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



250
251
252
# File 'lib/rest_framework/controller_mixins/models.rb', line 250

def show
  api_response(self.show!)
end

#show!Object



254
255
256
257
# File 'lib/rest_framework/controller_mixins/models.rb', line 254

def show!
  @record ||= self.get_record
  return self.serialize(@record)
end