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
233
# File 'lib/rest_framework/controller_mixins/models.rb', line 230

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

#showObject



226
227
228
# File 'lib/rest_framework/controller_mixins/models.rb', line 226

def show
  api_response(self._show)
end