Fix scope latest of ReportNote (#9630)

master
ysksn 5 years ago committed by Eugen Rochko
parent 0c1e4bb969
commit a8ba291beb
  1. 2
      app/models/report_note.rb

@ -15,7 +15,7 @@ class ReportNote < ApplicationRecord
belongs_to :account
belongs_to :report, inverse_of: :notes, touch: true
scope :latest, -> { reorder('created_at ASC') }
scope :latest, -> { reorder(created_at: :desc) }
validates :content, presence: true, length: { maximum: 500 }
end

Loading…
Cancel
Save