mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:43:25 +08:00
DEV: Remove deprecated User#saw_notification_id method (#27175)
This commit is contained in:
parent
581dbca97f
commit
cb592ae4ac
|
@ -788,18 +788,6 @@ class User < ActiveRecord::Base
|
|||
Reviewable.list_for(self, include_claimed_by_others: false).count
|
||||
end
|
||||
|
||||
def saw_notification_id(notification_id)
|
||||
Discourse.deprecate(<<~TEXT, since: "2.9", drop_from: "3.0")
|
||||
User#saw_notification_id is deprecated. Please use User#bump_last_seen_notification! instead.
|
||||
TEXT
|
||||
if seen_notification_id.to_i < notification_id.to_i
|
||||
update_columns(seen_notification_id: notification_id.to_i)
|
||||
true
|
||||
else
|
||||
false
|
||||
end
|
||||
end
|
||||
|
||||
def bump_last_seen_notification!
|
||||
query = self.notifications.visible
|
||||
query = query.where("notifications.id > ?", seen_notification_id) if seen_notification_id
|
||||
|
|
|
@ -114,7 +114,6 @@ after_initialize do
|
|||
notification = Notification.where(topic_id: topic.id, post_number: first_post.post_number).first
|
||||
if notification.present?
|
||||
Notification.read(self, notification.id)
|
||||
self.saw_notification_id(notification.id)
|
||||
self.reload
|
||||
self.publish_notifications_state
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user