Method: Notification#viewed
- Defined in:
- lib/app/models/notification.rb
#viewed ⇒ Object
Mark this as viewed
80 81 82 |
# File 'lib/app/models/notification.rb', line 80 def viewed set(state: STATE_VIEWED, last_viewed_at: Time.now.utc, viewed_count: viewed_count + 1) end |