Module: Concerns::Spammable
- Extended by:
- ActiveSupport::Concern
- Included in:
- Comment
- Defined in:
- app/models/concerns/spammable.rb
Instance Method Summary collapse
Instance Method Details
#mark_as_spam! ⇒ Object
14 15 16 |
# File 'app/models/concerns/spammable.rb', line 14 def mark_as_spam! update_attribute :marked_as_spam, true end |
#unmark_as_spam! ⇒ Object
18 19 20 |
# File 'app/models/concerns/spammable.rb', line 18 def unmark_as_spam! update_attribute :marked_as_spam, false end |