mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-12 13:26:45 +00:00
22 lines
363 B
Ruby
22 lines
363 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Account::Sensitizes
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
scope :sensitized, -> { where.not(sensitized_at: nil) }
|
||
|
end
|
||
|
|
||
|
def sensitized?
|
||
|
sensitized_at.present?
|
||
|
end
|
||
|
|
||
|
def sensitize!(date = Time.now.utc)
|
||
|
update!(sensitized_at: date)
|
||
|
end
|
||
|
|
||
|
def unsensitize!
|
||
|
update!(sensitized_at: nil)
|
||
|
end
|
||
|
end
|