Retrospring/app/controllers/notifications_controller.rb

13 lines
376 B
Ruby

class NotificationsController < ApplicationController
before_filter :authenticate_user!
def index
@type = params[:type]
@notifications = if @type == 'all'
Notification.for(current_user)
else
Notification.for(current_user).where('LOWER(target_type) = ?', @type)
end
end
end