Files
nairobi/app/controllers/notifications_controller.rb
2016-01-06 12:33:37 +01:00

10 lines
224 B
Ruby

class NotificationsController < ApplicationController
before_action :authenticate_user!
load_and_authorize_resource class: "User"
def index
@notifications = current_user.notifications.recent.for_render
end
end