mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
29 lines
706 B
Ruby
29 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
|