mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-29 13:09:04 +01:00
21 lines
363 B
Ruby
21 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
|