Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.

learn more… | top users | synonyms

0
votes
0answers
20 views

Rails devise treat sign in and sign up the same way

I am overriding Devise::SessionsController to treat sign in or sign up as the same action from user perspective. When user signs in we check if email exists and password provided matches (sign in). ...
0
votes
0answers
4 views

What's the best way to test Devise::Mailer?

I'm using Devise::Mailer but want to check deliveries during testing but Devise.mailer.deliveries always returns an empty array. This is also the case when I send an email from the Rails console ...
-1
votes
0answers
36 views

Calling Devise signout path from third party(API) application

I am having two rails app one is for sso and another one is client app using this sso. I am using devise to signup /signin process. Now I want to call the sing out url of sso application from the ...
0
votes
0answers
10 views

Invoking create method in Devise::ConfirmationsController

I am using Devise and would like to invoke ConfirmationsController#create as follow: %i Add another email = simple_form_for(@user, :url => confirmation_path(@user), :html => { :method => ...
1
vote
1answer
64 views

Devise.rb Confirmable Not Working

I am new to Ruby and Rails and having some issues with Devise. I am creating a new Devise installation. Even though, I believe I have properly configured my devise.rb initializer for enabling ...
0
votes
1answer
27 views

Devise session_controller ArgumentError

I created a session_controller to handle token authentication, but I got this error: Started POST "/users/sign_in" for 127.0.0.1 at 2013-04-29 20:29:44 +0200 Processing by SessionsController#create ...
1
vote
1answer
34 views

Using Omniauth on Rails, how do I change the URL?

Currently I have these two routes in my rake routes output: user_omniauth_authorize /users/auth/:provider(.:format) devise/omniauth_callbacks#passthru {:provider=>/facebook|twitter/} ...
10
votes
4answers
248 views

Is there a solution for Rails Gem Devise to allow a user to have multiple emails?

I'm looking for a solution to allow a user on my app to have more than 1 email. This should work similar to Facebook, LinkedIn and Quora. Where an account can have multiple emails, 1 as the primary. ...
0
votes
3answers
31 views

How to test a controller with steps to use some action

In my system, I have a user that have one company that have multiple accounts. User sign in system using Devise, and have a virtual attribute called selected_company that was setted in ...
1
vote
1answer
60 views

UserMailer with Devise

am using my custom mailer UserMailer to send emails. It works perfect in development, but in production i get error 500, that is when am trying to retrieve my password on forgetting. here is what is ...
0
votes
2answers
38 views

Testing Password Length with RSpec Using Devise

I am attempting to test my User model (using the devise gem). I'm running on the rails4 branch of the devise gem. And I'm trying to write a test for the minimum password length. In my user_spec.rb, ...
0
votes
2answers
92 views

Reset password email is not sent by Devise

Rails 3.2.13, Ruby 1.9.3 My Devise controller is working fine sending emails, with one exception: sending the reset password instructions email. When I click on the "Forgot your password?" link, I ...
0
votes
1answer
17 views

Rails - Fields from user form detected but validation still fails

Here is the exception I am getting: ActiveRecord::RecordInvalid in UsersController#create Validation failed: Email can't be blank, Password can't be blank But, the parameters seem to be picked up ...
0
votes
2answers
36 views

rails with devise - able to access other accounts once logged in

I am using rails with devise for user authentication. I am able to create new user accounts and able to log in. However, once I login using an account, then I can login to other accounts also by just ...
0
votes
1answer
32 views

Devise Invitable - Show how many invite left

I am able to show the number of invites an user gets with <%= @user.invitation_limit %> However, I'd like to show how many invites are left. Any help?
0
votes
1answer
36 views

Preventing user deletion in Ruby On Rails and Devise Application

I have a Rails 3.2.x application using Devise. As per standard Devise feature, a user can delete his account (there is a button to click on the change passsword screen). I want to prevent a user of ...
1
vote
1answer
57 views

Devise Confirmable Allows Signin

Devise is good but I can't get it to work properly on an app that's 100% complete. I found no sources that helped me. Is there any complete source for info on this?
0
votes
0answers
31 views

Devise sign_in 401 error

I just added an Admin model to my app. When I create a new Admin, a session is created and works fine. But after destroying the session by signing out, the sign_in page gives a "Invalid email or ...
0
votes
1answer
96 views

Devise and ActiveAdmin - Edit User - undefined method user_id

I just installed ActiveAdmin to manage my users using rails generate active_admin:install --skip-users rails generate active_admin:resource User in order to use my existing User model I use with ...
1
vote
1answer
32 views

Rails Devise confirmable for some users but not others

I have a Rails app that is using Devise. Is it possible to have some users confirmable and others not? The users table has a boolean field called admin. We add the admin users programmatically ...
0
votes
0answers
35 views

Rails app (using devise) with manual login called by android app with facebook login

I need to manually create a user having devise installed and working. I have found in this question the answer to do it: @user = User.new(:email => 'test@example.com', :password => 'password', ...
2
votes
1answer
41 views

How to configure Devise email with Heroku and Sendgrid in Rails?

I've got a simple Rails 3.2.7 app with Devise added that is deployed to Heroku with Sendgrid added. It works fine on heroku for everything except when it needs to do a password retrieve which requires ...
1
vote
0answers
45 views

devise 401 Unauthorized all the time on ruby 1.9.3

I have a very basic code, just from devise tutorial and it works fine on ruby 1.8.7 But on ruby 1.9.3 it works wrong, when I login in the system, it checks that user correct, update fields but still ...
1
vote
0answers
23 views

Is it possibe to let a user keep being logged in when he's accesssing to sub domain www?

I implemented Devise in my App. It was working fine. But one thing I'm not satisfied with: When a user log into example.com first, then access to www.example.com, he is logged out. Is it possible to ...
1
vote
1answer
89 views

rails devise 401 unauthorized for a specific page

I'm having trouble discerning why my app is returning a 401 Unauthorized. Other actions in my Institutions controller are working just fine while not signed in. However, this and another page are ...
1
vote
2answers
35 views

Model/ActiveRecord not saving new data

I have confirmed that this method works. Basically it takes the email from controller and changes the email of the specific user. However it never actually saves the data. I pass a wrong email format ...
1
vote
1answer
32 views

How do I save information to a model on Devise.sessions#destroy?

I'm using Devise and Piggybak for a Rails project and Piggybak uses a cookie named cart to store the user cart. The problem is that Piggybak doesn't destroy the cookie on user sign_out so, if I ...
0
votes
2answers
31 views

Include or extend a class/module from a gem (e.g. devise)

I have written a small module lib/encryption/encryption.rb module Encryption def self.encrypt(value) ... end def self.decrypt(value) ... end end I want to use/access this module ...
1
vote
1answer
37 views

Rails Devise User Exists on empty DB

I am trying to create a User through Devise but am running into issues. home#land def land @resource = User.new @devise_mapping = Devise.mappings[:user] end land.html.haml = form_for ...
0
votes
1answer
15 views

How do I get devise 2.2.3 to accept auto-geneated password for rails 3.2.13 app

I am attempting to create a rails 3.2.13 app where when the user is created a password is auto generated for that user. Right now I am using a before_validate to generate and assign the password to ...
0
votes
2answers
65 views

Logout users with devise gem rails

In admin section, I'm showing a list of currently logged in users. Now admin can select one or more user/users and destroy their session(logout them). I'm not able to figure where to start ...
0
votes
0answers
48 views

Devise & Sorcery

I have a Public API app in Rails that uses Devise for Rails Admin, and Sorcery is used for consumer authentication (consumers for the API). Whenever I add a route for devise as: devise_for :users ...
1
vote
1answer
92 views

Devise Send Reset Password Instruction “undefined method `slice' for nil:NilClass”

I am using devise (2.2.3) in a rails (3.2.12) application. I have 2 devise model, devise Admin and User On devise model Admin authentication_keys using email and User authentication_keys using ...
1
vote
1answer
102 views

Rails 4: devise and omniauthable error

I use devise and omniauth in my Rails 4 app. I did all actions from this page (from answer): Devise, Omniauth and Facebook integration session error After adding this :omniauthable into this string ...
2
votes
2answers
36 views

How to upcase model names in localised Devise error messages?

I am using Devise in my Rails app and I wonder why it downcases all my model names in its error messages: Source code on Github Is there any way to override this? In German, for example, nouns start ...
0
votes
2answers
52 views

Rails Devise views not rendering

I am trying to integrate Devise into my Rails app, but am having trouble. I want to render a User registration form in my page: I've run rails generate devise:views and got: invoke ...
0
votes
2answers
36 views

Rails3+Devise+simple_form+nested_model

I am using devise to authenticate Users, and when new User signs up, I would like to create new Account as well, and set this user as owner of the account. I decided to use form with nested model for ...
0
votes
2answers
115 views

DEVISE after_inactive_sign_up_path_for not being called

Environment: RAILS 3.2 + DEVISE for auth + Invitable + Confirmable add-ons. Using devise (2.2.3) Using devise-i18n (0.6.5) Using devise_invitable (1.0.3) I am trying to redirect to a specific ...
0
votes
1answer
57 views

Nested resource authorization with devise and cancan

How can I correctly authorize a resource that is nested with devise and cancan? I have implemented the suggested procedure from the documentation but without success. This issue involves the ability ...
0
votes
1answer
20 views

store in the session the last website URL before a login

I want to redirect a user to his last URL visited before he logged in. How do I do that? What I tried: Added before_filter in my application controller: before_filter :store_location def ...
0
votes
0answers
86 views

Getting NoMethodError, undefined method for nil:NilClass , need an option to ignore nil value

My problem is I have added img location to my existing pin with after_post_process :get_image_loc and now I get undefined method `[]' for nil:NilClass It works fine when the uploaded image gas ...
0
votes
0answers
159 views

Devise with multiple models, bootstrap modal with ajax login

I have 2 kinds of users - nurses and patients, and want to setup login such that there are two buttons on the welcome/landing page which open up a bootstrap modal with the login form for each type of ...
0
votes
1answer
34 views

Mongoid + Devise Daily Signups

I have been using Mongoid in my latest project along with Devise. So far it is great. I would like to count the number of user signups per day grouped by created_at date. I know that in mongoDB it ...
0
votes
1answer
44 views

Rails + Mongoid + Devise : Add a birthday field to the register form

I'm using Rails 3.2.11, mongoid 3.1.2 and devise 2.2.3 and I have an User model with a birtday Date field. class User include Mongoid::Document field :birthday, type: Date field :email, ...
0
votes
0answers
29 views

Authenticating against external and then internal databases in rails

A system I'm building requires us to authenticate against our clients database to pull user information from their database. However, they also want us to allow external users to log in and access ...
0
votes
2answers
53 views

Show different validation message for 'same field in different form' using single model, rails

Here I'm using error message for sign up and sign in form using devise having single model user.rb..How can I change error message for the field email and password for different form? In user.rb I ...
0
votes
1answer
26 views

Rails: Sign in Users with just an email using Devise

Here is my situation. I am letting users to sign up in a landing page so that when the page is launched we can contact them. They are just entering their email. What I am looking for is to ...
0
votes
1answer
45 views

Change devise params from user[email] & user[password] to email and password

I'm creating an API and was wondering if it is possible with the devise gem and with Rails in general, to change the the params such that user[email] changes to email and user[password] changes to ...
0
votes
2answers
409 views

Rails 4/Devise/MongoDB: “Unpermitted parameters” using custom properties and strong parameters

Trying to add a nested custom attribute, Profile (a Mongoid document), to my devise User class. When the Devise registration form is submitted, it should create both a User and a corresponding Profile ...
0
votes
2answers
33 views

Adding only devise :confirmable to a Model

I need to add a confirmation email functionality to a model in a Rails Application, but nothing else. It is not a User model, it is not authenticable. I added devise :confirmable to the Model, and ...

1 2 3 4 5 93