Module: RESTFramework::ShowModelMixin

Included in:
ModelControllerMixin, ReadOnlyModelControllerMixin
Defined in:
lib/rest_framework/controller_mixins/models.rb

Overview

Mixin for showing records.

Instance Method Summary collapse

Instance Method Details

#showObject



230
231
232
# File 'lib/rest_framework/controller_mixins/models.rb', line 230

def show
  api_response(self.show!)
end

#show!Object



234
235
236
237
# File 'lib/rest_framework/controller_mixins/models.rb', line 234

def show!
  @record ||= self.get_record
  return self.get_serializer_class.new(@record, controller: self).serialize
end