mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-11 09:33:36 +01:00
18 lines
588 B
Ruby
18 lines
588 B
Ruby
class NotificationsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@type = params[:type]
|
|
@notifications = if @type == 'all'
|
|
Notification.for(current_user)
|
|
elsif @type == 'new'
|
|
Notification.for(current_user).where(new: true)
|
|
else
|
|
Notification.for(current_user).where('LOWER(target_type) = ?', @type)
|
|
end.paginate(page: params[:page])
|
|
respond_to do |format|
|
|
format.html
|
|
format.js
|
|
end
|
|
end
|
|
end
|