Use Arel in_order_of
method to generate CASE for DomainBlock.by_severity
(#28617)
This commit is contained in:
parent
57f49c8191
commit
202951e6d9
2 changed files with 3 additions and 2 deletions
|
@ -41,7 +41,8 @@ module Mastodon::CLI
|
|||
class SoftwareUpdate < ApplicationRecord; end
|
||||
|
||||
class DomainBlock < ApplicationRecord
|
||||
scope :by_severity, -> { order(Arel.sql('(CASE severity WHEN 0 THEN 1 WHEN 1 THEN 2 WHEN 2 THEN 0 END), domain')) }
|
||||
enum severity: { silence: 0, suspend: 1, noop: 2 }
|
||||
scope :by_severity, -> { in_order_of(:severity, %w(noop silence suspend)).order(:domain) }
|
||||
end
|
||||
|
||||
class PreviewCard < ApplicationRecord
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue