Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Rails Engine, where I want to use Devise. I installed devise like normal, and added this in my engine devise.rb:

  Devise.setup do |config|
      config.router_name = :cms_user
    end
and this in my routes file: 
Cms::User::Engine.routes.draw do
  devise_for :users, {
    class_name: 'Cms::User',
    module: :devise
  }
end

and this in my routes:

 devise_for :users, {
   class_name: 'Cms::User',
   module: :devise
 }

according to this guide: https://github.com/plataformatec/devise/wiki/How-To:-Use-devise-inside-a-mountable-engine

However I keep getting this error:

undefined method 'cms_user'

What am I doing wrong ?

share|improve this question
I have also tried to add devise to a brand new plugin, and added the this in my engine routes file: devise_for :users, { class_name: 'Blorgh::User', module: :devise } and this in my devise file config.router_name = :blorgh_instant_user – jakobk Oct 11 '12 at 15:07
Any luck trying to solve this? I may have run into the same issue, though I'm not sure: stackoverflow.com/questions/12879350/… – Inc1982 Oct 14 '12 at 4:39
Hi! - Yes I solved it with, please look at the latest anwser. Also I found that when mounting the engine, it's important to specify a path, otherwise the Devise routes wont work (for example: mount Cms::Engine => "/cms") – jakobk Oct 15 '12 at 12:56

1 Answer

up vote 2 down vote accepted

Here's the how to:

  1. Rails plugin new cms --mountable -d postgresql

2: Install devise like normal

3: Add this in the main application routes file:

  devise_for :users, {
     class_name: 'Cms::User',
     module: :devise
   }

This line here, mentioned in the devise wiki, caused the problems for me:

config.router_name = :Cms_user 

Wiki: https://github.com/plataformatec/devise/wiki/How-To:-Use-devise-inside-a-mountable-engine

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.