This commit is contained in:
nilsding 2014-12-12 17:54:13 +01:00
parent e50bd47741
commit b79d4f30ac
2 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,6 @@
class NotificationsController < ApplicationController
before_filter :authenticate_user!
def index
end
end

View File

@ -1,4 +1,6 @@
class PublicController < ApplicationController
before_filter :authenticate_user!
def index
@timeline = Answer.all.reverse_order.paginate(page: params[:page])
respond_to do |format|