mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 23:44:55 +08:00
28 lines
955 B
Ruby
28 lines
955 B
Ruby
class UserNotification < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :notification
|
|
|
|
def self.last_notifications(user, last_notification_id = nil, per_page = 10)
|
|
last_notification_id = 999999999999999999999999 if last_notification_id < 1
|
|
Notification.joins(:user_notifications)
|
|
.where('user_notifications.user_id = ?', user.id)
|
|
.where('notifications.id < ?', last_notification_id)
|
|
.order(created_at: :DESC)
|
|
.limit(per_page)
|
|
end
|
|
|
|
def self.recent_notifications(user)
|
|
Notification.joins(:user_notifications)
|
|
.where('user_notifications.user_id = ?', user.id)
|
|
.order(created_at: :DESC)
|
|
.limit(10)
|
|
end
|
|
|
|
def self.unseen_notification_count(user)
|
|
where('user_id = ? AND checked = false', user.id).count
|
|
end
|
|
|
|
def self.seen_by_user(user)
|
|
where(user: user).where(checked: false).update_all(checked: true)
|
|
end
|
|
end
|