Method: Scimitar::ActiveRecordBackedResourcesController#show

Defined in:
app/controllers/scimitar/active_record_backed_resources_controller.rb

#showObject

GET/id (show)



52
53
54
55
56
57
# File 'app/controllers/scimitar/active_record_backed_resources_controller.rb', line 52

def show
  super do |record_id|
    record = self.find_record(record_id)
    record_to_scim(record)
  end
end