Files
nairobi/app/controllers/notifications_controller.rb
Julian Herrero d9ba3edc2a mostrar notificaciones a los usuarios cuando alguien comenta en su
debate o responde a su comentario
2016-01-05 17:43:44 +01:00

10 lines
231 B
Ruby

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