Module: Vert::Concerns::SoftDeletable
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/vert/concerns/soft_deletable.rb
Instance Method Summary collapse
Instance Method Details
#deleted? ⇒ Boolean
41 42 43 |
# File 'lib/vert/concerns/soft_deletable.rb', line 41 def deleted? discarded? end |
#restore ⇒ Object
37 38 39 |
# File 'lib/vert/concerns/soft_deletable.rb', line 37 def restore undiscard end |
#soft_delete ⇒ Object
33 34 35 |
# File 'lib/vert/concerns/soft_deletable.rb', line 33 def soft_delete discard end |