Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.
195
votes
24answers
37k views
No route matches “/users/sign_out” devise rails 3
I've installed devise on my app and applied the following in my application.html.erb file:
<div id="user_nav">
<% if user_signed_in? %>
Signed in as <%= current_user.email ...
76
votes
3answers
51k views
Override devise registrations controller
I have added a field to the sign-up form that is based on a different model, see How do I use nested attributes with the devise model for the gory details. This part is working fine.
The problem now ...
58
votes
6answers
31k views
Rails 3 using Devise: How to allow someone to log in using their Facebook account?
I have a Rails 3 application using Devise for authentication. Now I need to allow someone to log in using their Facebook account. I think this is called Facebook Connect, but I've also heard the term ...
52
votes
5answers
63k views
“WARNING: Can't mass-assign protected attributes”
I have used RESTful techniques to generate a model (in fact, I am using Devise gem, which does that for me), and I have added new fields called first_name and last_name to the model. Migration went ...
51
votes
5answers
23k views
Heroku/devise - Missing host to link to! Please provide :host parameter or set default_url_options[:host]
I am trying to push my app on heroku. I am still in dev.
I use devise with the confirmable module.
When I try to add a user with the heroku console I got this error:
Missing host to link to! Please ...
51
votes
10answers
20k views
rails - Devise - Handling - devise_error_messages
in my user edit page, there is a line as follows:
<%= devise_error_messages! %>
The problem is this does not output errors the stand way that the rest of the app does:
<% flash.each do ...
44
votes
2answers
13k views
Create a devise user from Ruby console
Any idea how to create and save a new User object with devise from the ruby console?
When i tried to save it, I'm getting always false. I'm guessing i'm missing something but i can't find any info ...
39
votes
10answers
15k views
RoR Devise: Sign in with username OR email
What's the best way to enable users to log in with their email address OR their username? I am using warden + devise for authentication. I think it probably won't be too hard to do it but i guess i ...
38
votes
6answers
13k views
Rails 3 Authentication: Authlogic vs Devise
I have always used Authlogic in Rails 2.3 but now that I am using Rails 3 I think I might try out a new authentication solution.
How does Devise compare with Authlogic? What are their differences?
...
35
votes
4answers
9k views
disabling Devise registration for production environment only
I am launching a beta site with a select group of users. I want to disable registration in the production environment only, and only for a short period of time (i.e. I don't want to nuke my ...
35
votes
4answers
7k views
Migrating from Authlogic to Devise
I've previously implemented Authlogic for authorization on my site. Now however I wish to switch over to using Devise instead, and I'm wondering if anyone has any experience with this. Perhaps ...
34
votes
7answers
25k views
Creating an admin user in Devise on Rails beta 3
Ok, I'm probably going to feel quite dumb when someone answers this one with a simple thing that I'm missing but... here goes:
I've got a brand new app on rails 3 beta and I'm using devise for the ...
32
votes
3answers
13k views
Devise form within a different controller
I am using a devise gem for sign_in/sign_out procedures.
I generated views files from devise, using rails g devise views
I saw there was a devise/sessions/new.html.erb file which contained a form ...
31
votes
6answers
16k views
Extending Devise SessionsController to authenticate using JSON
I am trying to build a rails API for an iphone app. Devise works fine for logins through the web interface but I need to be able to create and destroy sessions using REST API and I want to use JSON ...
31
votes
5answers
5k views
How do I remove the Devise route to sign up?
I'm using Devise in a Rails 3 app, but in this case, a user must be created by an existing user, who determines what permissions he/she will have.
Because of this, I want:
To remove the route for ...
30
votes
1answer
11k views
Token Authenticatable module in Devise
I'm starting using Devise in my Rails app, but the Token Authenticatable: signs in a user based on an authentication token (also known as "single access token") module puzzles me.
Is the user ...
28
votes
2answers
10k views
Rails & Devise: How to render login page without a layout?
I know this is probably a simple question, but I'm still trying to figure Devise out...
I want to render :layout => false on my login page; how can I do this with Devise?
28
votes
2answers
10k views
Using Devise tokens to log in, is this built in?
So, I'm trying to use tokens with Devise (version 1.0.3 with Rails 2.3.8) to let a user log in, but I'm not entirely sure where to begin.
...
23
votes
5answers
11k views
How do I enable :confirmable in Devise?
The newest version of Devise doesn't have :confirmable enabled by default. I already added the respective columns to the User model but cannot find any code examples of how to enable :confirmable.
...
23
votes
4answers
5k views
undefined method `devise_for' in rails
after i install devise and create a user model. i rake db:migrate and then i rake routes. I then get a error with "undefined method `devise_for' for #". What could be causing this error?
22
votes
5answers
10k views
different layout for sign_in action in devise
I'm trying to use a different/custom layout named "devise" for the sign_in action. I found this page in the devise wiki, and the second example even says you can do it per-action (in this case, ...
22
votes
5answers
18k views
Devise Custom Routes and Login Pages
I'm trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3).
This is my config/routes.rb file
match '/dashboard' => 'home#dashboard', :as => 'user_root'
...
22
votes
2answers
7k views
Profile model for Devise users?
i want to extened the sign up form of my devise installation. i created a Profile model and asking myself now, how can i add specific data of the form to this model. Where is the UserController of ...
21
votes
3answers
11k views
Devise update user without password
I want to update users attributes without password in devise. The case is like, if password and password confirmation fields are not blank then I need devise error and if they are blank then other ...
21
votes
1answer
5k views
Rails 3 with Devise for Authentication - How do I manually create a user?
I would like to manually create new Users, without forcing them to verify their email address.
The idea is to allow existing users to automatically add their friends without requiring their ...
20
votes
5answers
8k views
Devise logged in root route rails 3
Heyya guys.
So i thought about this coolio idea, if you are logged in then you get some sort of dashboard, else you get an information/login/sign up page.. So how do i do that..
I mostly wants to do ...
19
votes
2answers
9k views
How use token authentication with Rails, Devise and Backbone.js?
I'm trying to build a mobile application with PhoneGap, jQuery Mobile and Backbone.js on the client-side - with a Rails 3 JSON API running server-side.
I know how to fetch the token from the server ...
18
votes
4answers
3k views
Resque, Devise and admin authentication
Using Resque and Devise, i have roles for User, like:
User.first.role #=> admin
User.last.role #=> regular
I want to setup an authentication for Resque. So, inside config/routes.rb i have:
...
18
votes
2answers
4k views
“rake aborted! stack level too deep” while deploying to Heroku
My website used to be working and Heroku precompiled the assets and everything. Now, seemingly out of nowhere, I started to get this message on deploy:
Preparing app for Rails asset pipeline
Running: ...
18
votes
4answers
2k views
Is there a Rails admin interface that supports MongoDB and Devise?
I recently switched to MongoDB and I am wondering if I can continue using any of the popular admin interface solutions, such as ActiveScaffold and Typus?
18
votes
1answer
2k views
Devise and Strong Parameters
I would like to know how to integrate both of this gems(devise + Strong Parameters), since strong params will likely be added to the rails core in 4.0
any help is welcome
thanks
18
votes
5answers
5k views
Rails 3.0.9 + Devise + Cucumber + Capybara the infamous “No route matches /users/sign_out”
I am using devise 1.4.2 with rails 3.0.9, cucumber-rails 1.0.2, capybara 1.0.0. I got No route matches "/users/sign_out" error when I clicked logout. I added :method => :delete to link_to tag after ...
18
votes
2answers
7k views
HTTP authentication between devise and iphone app
I'm new to ruby on rails but I want to send the data from my SQlite database from my iphone app to the rails web app. Like a "sync" service.
I'm using devise for authentication for the web app. I ...
17
votes
3answers
18k views
Rails Devise: get object of the currently logged in user?
I've recently installed Devise on a rails application, and I am wondering if it is possible to get an instance of the currently logged in user in either one of the other models or controllers, and if ...
17
votes
3answers
6k views
How do I set up email confirmation with Devise?
Is there a tutorial out there that explains how to set up Devise's signup confirmation email from scratch (in both development and production), i.e. if you don't have Action Mailer set up?
Google ...
17
votes
5answers
9k views
Devise: Why doesn't my logout link work?
the problem: In a nutshell, when I try to install a logout link to my app it fails to work. Here's as much context as I can think to put here (if you want anything else, please poke me)...
I've got ...
17
votes
2answers
5k views
Ruby on rails: Devise, want to add invite code?
I would like to add an invite_code requirement for users to sign up. Ie. in addition to requiring them to specify an email/password combo, I want an additional field :invite_code. This is a temporary ...
17
votes
1answer
8k views
Rails Devise: Set password reset token and redirect user
In my app for a certain use case I create a new user (programmatically set the password) and send them a confirmation email.
I would like them to be able to change their password immediately after ...
17
votes
2answers
6k views
Devise Remember Me and Sessions
I'm confused with the devise gem config settings:
# The time the user will be remembered without asking for credentials again.
config.remember_for = 2.weeks
# The time you want to timeout the ...
17
votes
2answers
12k views
Sending mail with devise and Gmail smtp server
I am using Devise :confirmable and :recoverable module to confirm a user and to let him recover his password if he forgets it. Everything is going fine, the mail gets generated and I can see it in the ...
17
votes
1answer
3k views
How can I get Factory Girl to NEVER hit the database if I am calling Factory.build in order to make my controller tests FAST?
I am on a quest to make my Rails tests faster. I only have 520 tests, but they take 62 seconds to run in bash, and 82 seconds to run in Rubymine.
As an example of a typical controller test, I was ...
16
votes
3answers
6k views
how verify user password in devise
Well, I having a problem with matches user password in devise rails. User password store on my db which encrypted_password and when I trying find user by password, I don't understand how match ...
16
votes
3answers
9k views
How to redirect a user after registration when using Devise?
I am using Rails 2.3 and Devise to handle user registration / authentication.
I need to redirect a user to an external 3rd party website immediately after a user signs up for an account. Been looking ...
16
votes
2answers
3k views
Devise for Twitter, Cookie Overflow error?
I am trying to integrate twitter into devise using this guide. I basically take all occurence of facebook and substitue it with twitter. However, when I sign in with twitter, I am getting the ...
16
votes
3answers
5k views
undefined method `database_authenticatable' for #<ActiveRecord::ConnectionAdapters::TableDefinition:0x9dee690>
I am using Active Admin gem for my small application based on Quiz. But when I execute rake db:migrate it gives me error. Following is the trace of the command :
$ rake db:migrate ...
16
votes
6answers
12k views
rails - “WARNING: Can't verify CSRF token authenticity” for json devise requests
do you know how it is possible to correctly retrieve the CSRF token to pass with a JSON request?
I know that for security reason now Rails is enforcing CSRF check on all the request type (including ...
16
votes
3answers
2k views
Devise forbid certain user from signing in [closed]
I am using Devise for authentication in my application.
How do I forbid certain users from signing in - kind of disable a user?
16
votes
3answers
4k views
Rails3 Devise undefined method `confirmation_url'
I've seemingly set up Devise for my User authentication, with the :confirmable option set.
Everything seems to run fine when I run it in the browser, I sign up, go to the confirmation url shown in ...
16
votes
4answers
4k views
setting up ssl on devise
I'd like to require ssl authentication for the user resource on devise. I was expecting that to be as simple as it is in rails, like:
devise_for :users, :constraints => { :protocol => "https" ...
16
votes
4answers
2k views
Share session (cookies) between subdomains in Rails?
I have an app setup where each user belongs to a company, and that company has a subdomain (I am using basecamp style subdomains). The problem that I am facing is that rails is creating multiple ...
