Resources without Model Namespaces

polymorphic_path(A::B::User) != users_url
which normally would not be a problem, only that polymorphic_path is used in all form_for / link_to etc helpers…

The simpeles solution i found is overwriting User.model_name with:

def self.model_name
  ActiveSupport::ModelName.new('User')
end

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s