What does the model.create!
expression mean:
module StandardCreateAction
extend ActiveSupport::Concern
def create
model.create!(attributes)
render text: 'SUCCESS', status: self.class::SUCCESS_STATUS
end
end
I'm guessing it calls a same name model in the controller that uses this mixin?
In this case
model
has nothing to do withActiveSupport::Concern
which is just syntactic sugar around common ruby idioms such as:In this specific case
model
would be resolved toself.model
in the class which includes or is extended by the module. Ifself.model
cannot be resolved there it goes up the class tree.I'm guessing its something along these lines:
However, you might want to to a look at ActionController::Responder and the responders gem before you go reinventing the wheel.