Browse Source

Update notification.rb

Chris Oliver 6 năm trước cách đây
mục cha
commit
43ba3d16f2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/models/notification.rb

+ 1 - 1
app/models/notification.rb

@@ -4,7 +4,7 @@ class Notification < ApplicationRecord
   belongs_to :notifiable, polymorphic: true
   
   scope :unread, -> { where(read_at: nil) }
-  scope :recent, -> { order(created_at: :desc) }.limit(5)
+  scope :recent, -> { order(created_at: :desc).limit(5) }
 
   def self.post(to:, from:, action:, notifiable:)
     recipients = Array.wrap(to)