Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails - changing default param_key for a model

I've been using plain Ruby form objects in rails, but to keep my code organized, I've ended up having to add a ton of namespaces to them. So I'll have a form like:

class User::Registration::NewForm
  extend Forwardable
  extend ActiveModel::Naming
  extend ActiveModel::Callbacks
  include ActiveModel::Conversion
  include ActiveModel::Validations

  ...
end

The annoyance with this is that the param_key for my forms becomes kind of daunting, e.g. user_registration_new_form

I'd like to override this somehow, and I think I need to mess with the model_name and/or param_key methods from ActiveModel::Naming (http://apidock.com/rails/ActiveModel/Naming/param_key/class). But I can't get it to work.

Has anyone been able to successfully override the default param_key for a model?

like image 314
Bryce Avatar asked Oct 31 '13 01:10

Bryce


1 Answers

Gah, I finally got it! You just need to define a class model_name method, and return an ActiveModel::Name object.

So something like:

self.model_name
  ActiveModel::Name.new(User)
end
like image 133
Bryce Avatar answered Oct 23 '22 07:10

Bryce