scinote-web/app/controllers/user_notifications_controller.rb
2023-12-12 14:08:42 +01:00

30 lines
706 B
Ruby

# frozen_string_literal: true
class UserNotificationsController < ApplicationController
prepend_before_action -> { request.env['devise.skip_trackable'] = true }, only: :unseen_counter
def index
page = (params.dig(:page, :number) || 1).to_i
notifications = load_notifications.page(page).per(Constants::INFINITE_SCROLL_LIMIT)
render json: notifications, each_serializer: NotificationSerializer
notifications.mark_as_read!
end
def unseen_counter
render json: {
unseen: load_notifications.where(read_at: nil).size
}
end
private
def load_notifications
current_user.notifications
.in_app
.order(created_at: :desc)
end
end