Module: RESTFramework::Mixins::DestroyModelMixin

Included in:
ModelControllerMixin
Defined in:
lib/rest_framework/mixins/model_controller_mixin.rb

Overview

Mixin for destroying records.

Instance Method Summary collapse

Instance Method Details

#destroyObject



792
793
794
795
# File 'lib/rest_framework/mixins/model_controller_mixin.rb', line 792

def destroy
  self.destroy!
  render(api: "")
end

#destroy!Object

Perform the ‘destroy!` call and return the destroyed (and frozen) record.



798
799
800
# File 'lib/rest_framework/mixins/model_controller_mixin.rb', line 798

def destroy!
  self.get_record.destroy!
end