Module: RESTFramework::CreateModelMixin
- Included in:
- ModelControllerMixin
- Defined in:
- lib/rest_framework/controller_mixins/models.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/rest_framework/controller_mixins/models.rb', line 171 def create if self.get_recordset.respond_to?(:create!) && !self.disable_creation_from_recordset # Create with any properties inherited from the recordset (like associations). @record = self.get_recordset.create!(self.get_create_params) else # Otherwise, perform a "bare" create. @record = self.get_model.create!(self.get_create_params) end serialized_record = self.get_serializer_class.new(object: @record, controller: self).serialize return api_response(serialized_record) end |