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
18 views

How do I postpone Devise confirmation email until a new user has paid?

I'm writing a membership app using Devise (2.2.3). It has this sign up sequence User enters registration details and buys a one year subscription After the user is created they get redirected to ...
0
votes
0answers
17 views

Using Devise and CustomFailure to Redirect Failed Registrations to HomePage

I'm using this to send failed logins back to the homepage as well as show error messages. class CustomFailure < Devise::FailureApp def redirect_url if warden_options[:scope] == :user ...
0
votes
0answers
37 views

Rails - Login Form with Devise. Sessions#create triggers new form

When a user with invalid credentials clicks 'login' , the 'sessions/create' action is triggered. This then causes the devise login form - to display on my home-page. However I already have a ...
0
votes
2answers
39 views

Rails - Devise - User Profile url with username on

I would like to get user profiles accessible from the URL: root/user/(username) As of now I have it working with root/user/(id) but i want it to be more user friendly and shareable with the username ...
0
votes
0answers
37 views

How to do json authentication with devise in ror

I want to do JSON authentication with devise in ROR. I managed to config devise to response with Json. But I do not how to proceed next. In my understanding, when log in , I need to get a session ...
0
votes
1answer
23 views

Adding a scope for admins if there is only one model

I'm using Devise gem in Rails app. Instead of creating 2 model (for Users and Admins), I created only one named Users with an attribute is_admin. Now I want to add scope in my routes.rb. Will I be ...
-1
votes
0answers
29 views

Can I tailor devise gem to create a two-step sign up?

I’d like to customize the devise gem for Rails. My goal would be to have users sign up in two steps (as with the website fab.com): for the email field, and then for the passwords fields, and create ...
0
votes
1answer
40 views

Rails, devise, current_user get posts.name

I have Post model which is associated with devise's User. I want to know names of the posts user has when logged in. <% @posts.each do |post| %> <% if user_signed_in? %> ...
1
vote
0answers
46 views

How to associate multiple emails for a single user in rails Devise gem

I am developing an application which uses Deivse for user authentication. It performs all standard task that Devise handles(e.g: Email verification during user sign up).But a user may have multiple ...
0
votes
1answer
21 views

Restrict devise users to their own view/association

I am using devise for authentication and have an association between users (has_many :products) and products model (belongs_to :user). My routes file is resources :users do resources :products ...
0
votes
1answer
18 views

Do I need a controller for each role in Ruby on Rails 3?

My Ruby on Rails 3 application is using Devise and Cancan. Concerning the roles, I have admins, managers, users and guests. I have some Posts and I use the generated index function to get my Posts ...
1
vote
1answer
30 views

Rails App Refinery+Devise: Can't access Devise views

newbie Rails developer here. I'm trying to create an app that uses Devise for authentication and Refinery for content management. I've followed these tutorials: ...
1
vote
0answers
19 views

Trying to add validation to rails devise sign-up page

Kinda a noob rails programmer, but this would save me a ton of headache. Currently, I'm trying to add validation to my devise sign on page, such as only allowing the sign up to complete if their email ...
-1
votes
0answers
23 views

Devise methods undefined suddenly…what went wrong/need assistance thank you

working on an application, using Devise for users (log in, etc.). Everything has been working fine until I recently added a gem file then deleted that said gem file and a plugin...now its not ...
0
votes
1answer
50 views

Devise and shop creation

I would like to add a shop in the user registration with Devise. Let me explain: on the registration page, the user can check a box "create my shop now." If he checks, a form is displayed ans he can ...
2
votes
1answer
128 views

Strong parameters with Rails 4.0 and Devise

I am using the rails 4.0 branch of devise along with ruby 2.0.0p0 and Rails 4.0.0.beta1. This is the kind of question where I am checking if I'm doing it the right way, or if there are other things I ...
0
votes
1answer
46 views

Devise rubygem - How do you filter actions for authenticated/non-authenticated users?

I am new to Rails and I need to create a simple Rails project with these conditions: there must be page with some articles (title + body) anyone can read those articles only authenticated users can ...
0
votes
0answers
56 views

Adding nested attributes to devise user model

At first glance it would seem this question has been answered before, but not on my case (most are related to mass assignment issues and/or mongoid.) I have not been able to find an answer even though ...
0
votes
0answers
27 views

Rails Devise facebook authentication asking for email - how to stop this?

I'm using facebook login with devise with only standard initializers (no scope): │FB.login (response) -> if response.authResponse window.location = '/auth/facebook' But yet when I go to ...
0
votes
1answer
20 views

Rails password_confirmation being filtered with Devise

I've read a couple tutorials over the years that say you have to update config.filter_parameters to something like config.filter_parameters += [:password, :password_confirmation] in application.rb in ...
0
votes
1answer
33 views

Rails 3.2.13 / Devise 2.2.3: Method “authenticate_scope!” throws error: wrong number of arguments (1 for 0)

I use Devise (2.2.3) and am trying to load the "edit" form for a user using this jQuery ajax call: $.ajax({ type: 'GET', url: '/users/edit', data: { id: id } }); This will call this ...
0
votes
2answers
63 views

Adding devise invitable not working

I'm having User model (within PostgreSQL database) in my RoR application that's using Devise for authentication. Now I want users to be invited, so I decided to use devise_invitable gem. Following the ...
0
votes
2answers
29 views

Problems adding Devise model to a RefineryCMS app

I'd like to add a Devise model to a RefineryCMS app to allow a customer to log in and manage their profile. It seems reasonable to do this since a customer has nothing to do with the CMS. Since ...
0
votes
1answer
31 views

Devise Registration#update via JS in Rails

I'm trying to update the User model through Devise with AJAX and have Devise respond with the proper javascript file. I want to submit the form remotely to the registrations#update action, but this ...
0
votes
0answers
17 views

how can i redirect to specific link out of my app when devise before_filter :authenticate_user works

here is my categories controller code class CategoriesController < ApplicationController before_filter :authenticate_user! ,:except => :index def index #some code end ...
-1
votes
0answers
14 views

I am using devise and cancan gems. When I sign_in I get redirect back to sign_in page

Here is the log Started POST "/users/sign_in" for 127.0.0.1 at 2013-05-02 09:57:19 -0400 Processing by Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", ...
0
votes
0answers
34 views

Custom Authentication Strategy for Devise Using :token_authenticable

I am wondering how to implement a custom authentication strategy with devise using devise :token_authenticable. I already found instructions on how to do it with a model using devise ...
0
votes
0answers
41 views

Devise - After Sign In, Being Redirected to Naked URL, Not WWW

I'm ditching my naked URL and going with a www prefix only. However, my Devise set-up doesn't agree with this and after logging in or registering via the www domain, I am redirected to my naked URL. ...
0
votes
3answers
42 views

Rails - updating a user returns `Couldn't find User with id=edit`

In views/users/index.html.erb I have: <% @users.each do |user| %> <% if user.teacher == current_user.teacher || current_user.role == "admin" %> <tr> <td><%= ...
0
votes
2answers
40 views

Bad redirect from Omniauth / Devise on Failure

Currently my app is setup to use Omniauth and Devise with Twitter and Facebook. My problem is when a user presses cancel on Twitter or Facebook doesn't authorize it sends me back to devises ...
0
votes
0answers
29 views

Devise inherited controller calling the default registration form instead of the custom scoped one

I am using Devise gem to create models of Clinics and Doctors who can register and sign up. In order to have separate views for each of them, I activated the following line in ...
0
votes
1answer
39 views

Rails Devise LDAP Error: NoMethodError in Devise::SessionsController#create

My team has setup my ruby on rails app to work with devise ldap. Whenever a user logs in for the first time, it creates a new entry in the Users model and works completely fine. But whenever a user ...
0
votes
2answers
35 views

How and where to add a Devise view helper method current_user boolean?

This is the method I would like to access in my views: def current_user?(user) user == current_user end I essentially need to check that the current user can not friend and unfriend themselves in ...
0
votes
1answer
13 views

How to redirect after sign_in using Devise

When I sign in using devise I stay on same /users/sign_in page. Do I need to override Devise session controller? or is there any other way?
0
votes
0answers
12 views

Sign in equivalent to after_inactive_sign_up_path_for in Devise?

Ruby 2, Rails 3.2.13, Devise HEAD (b451fc0aad) If I sign up and the User I created has active_for_authentication? returning false (eg, using confirmabled), devise will not sign my up and redirect to ...
0
votes
0answers
20 views

One-Time Fee Membership for Rails App and Stripe

If I just wanted to create a one-time fee for a rails app membership, would I just be able to basically combine the payment forms from the Stripe Railscast into the Devise New User Registration form? ...
1
vote
1answer
44 views

How to authorize Dropbox using devise?

I have configured omniauth, omniauth-dropbox and devise for authentication using Dropbox. But every time I sign in using Dropbox it asks to authorize the app for the Dropbox account, even though I ...
0
votes
3answers
56 views

Rails - Couldn't find User with id=edit

I am using Rails 3 and Devise for authentication. When I try to update my current_user, an exception is thrown stating: Couldn't find User with id=edit app/controllers/users_controller.rb:49:in ...
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
60 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
32 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
245 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
90 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 ...

1 2 3 4 5 92