Module: RESTFramework::DestroyModelMixin
- Included in:
- ModelControllerMixin
- Defined in:
- lib/rest_framework/controller_mixins/models.rb
Overview
Mixin for destroying records.
Instance Method Summary collapse
Instance Method Details
#destroy ⇒ Object
291 292 293 294 |
# File 'lib/rest_framework/controller_mixins/models.rb', line 291 def destroy self.destroy! api_response("") end |
#destroy! ⇒ Object
296 297 298 299 |
# File 'lib/rest_framework/controller_mixins/models.rb', line 296 def destroy! @record ||= self.get_record @record.destroy! end |