Tagged Questions
0
votes
0answers
18 views
Devise Password Route Error
In my Rails 4 app im setting up some custom routes to use with Devise.
My current routes.rb looks like
devise_for :developers, :skip => [:sessions, :registrations]
as :developer do
match ...
0
votes
1answer
15 views
Rails : Devise with config.session_store :disabled
I am building a RESTful API that is stateless with Rails 3 and the gem devise.
Since I don't want to store any session, I have disabled them by defining in config/initializers/session_store.rb :
...
0
votes
0answers
32 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 ...
1
vote
1answer
73 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
142 views
customizing Devise's authenticate and current_user methods to work with soft delete / acts as paranoid
I am using Devise as authentication for a rails 3.2 app. My user model is called User, and I've been trying to implement a soft delete. I am trying to do this by using acts_as_paranoid, which ...
1
vote
1answer
44 views
Using a deleted scope with Devise authentication
I'm using Devise to handle authentication in a Rails app, and I'm using permanent_records to soft delete users. The default scope for my User model is the undeleted users. If a user deletes ...
0
votes
1answer
124 views
RSpec, authenticating Devise user in request specs
I'm trying to write RSpec request specs in order to test my service API and for that I need the user to be authenticated.
I found some examples on the net but nothing works, for the moment I'm stuck ...
0
votes
0answers
117 views
Devise JSON API returning 406 instead of 401 because of redirect
I'm trying to get devise to return a 401 and error message when trying to request an endpoint without proper authentication.
Currently this is what is happening:
Started GET ...
6
votes
3answers
496 views
Devise warden 401 Unauthorized when wrong credentials
I have a quite standard Devise login procedure with:
View:
resource_name, :url => session_path(resource_name)) do |f| %>
<%= f.input :password, input_html: {class: "span6"} %>
<% if ...
0
votes
0answers
113 views
Warden: How to pass parameters to authenticate method
For my latest project I'm using warden. I'm new to warden and I don't know how pass custom parameter to authenticate method. Here's the my login controller:
omniauth = ...
3
votes
1answer
146 views
ETIMEDOUT with LDAP Authentication with Devise (rails)
Errno::ETIMEDOUT in Devise::SessionsController#create
I'm trying to create a rails application that uses Devise with LDAP Authentication.
Unfortunately, I don't think my LDAP settings are correct, ...
1
vote
0answers
80 views
Why is devise session not persisted?
Some users in our Rails application are unable to sign in/up because the session can't be persisted. This is totally random and I'm not able to reproduce it. Is there anything I should monitor to ...
0
votes
1answer
103 views
Rails with Devise - Use current_user after 'remote => true' submit
I have a three part user signup that work with two separate models: User, and Customer Info. There's a user signup that I submit remotely, and it goes to the next part of the form. I want to be able ...
1
vote
0answers
106 views
Heroku, Rails: WildCard SSL cause env['warden'] to return nil
In my rails app. I'm using devise. Users will enter the top page from several subdomains like "ja.myapp.com", "www.myapp.com" etc..
I use several subdomains only inside promotion pages, so when they ...
2
votes
2answers
281 views
Set user time zone dynamically with devise
I've built a rails app that helps parents keep track of their infants’ sleep. For it to work properly I've had to support different time zones. To avoid annoying the user with time zones, I've created ...
1
vote
0answers
86 views
Using Rails + Devise, how can I “manually” validate a session cookie?
I've got a Rails (3.2.5) app using Devise (2.1.2) for auth.
Suppose I have this session cookie:
session_cookie = {
"session_id" => "{SESSION_ID}",
"_csrf_token" => ...
1
vote
1answer
604 views
Undefined method failure_app for nil:NilClass
I am trying to use devise from a Rails app to grant access to a Sinatra application within the Rack middleware.
My config/routes.rb has:
authenticate "admin" do
mount Admins::Dashboard, :at => ...
0
votes
2answers
56 views
How to detect that user is going to be authenticated? (before authenticate)
I need to trigger callback before Devise redirects user to login page, probably because authenticate_user! method detected he's not logged in. Something like:
before_filter :authenticate_user!, :only ...
2
votes
3answers
534 views
Devise - single sign in form for multiple users
I have two Devise models, User and Business; I would like both to be able to sign in using a single sign in form. I am using backbone js and I have a customized view so the view is not a concern. An ...
0
votes
0answers
96 views
Devise and custom captcha on login
I'm using custom captcha on login page (don't ask me why, that's a client requirement), and check it like this (in my UserSessions controller):
def new
set_session_captcha # my method that stores ...
0
votes
0answers
91 views
I need to show a warning pop-up while user tries to log-out, using Warden callback, Ruby on Rails?
Warden::Manager.before_logout ?I have the following warden callback in config/initializers/devise.rb
Warden::Manager.before_logout do |user, auth, opts|
auth.session[:signout] = true
end
In my ...
0
votes
0answers
141 views
Devise/Warden overwrite valid_password? for password reset
I am working on a website where there is a new devise system, and also there was an old system with it's own password authentications. we migrated them together so now we have the encrypted_password ...
4
votes
2answers
432 views
Devise ignore my custom strategy
I want to create a custom auth strategy for accessing the API. I followed the example code at Devise ignoring custom strategy.
The problem is that the valid? method in my Api strategy is never run ...
0
votes
1answer
2k views
Errno::ECONNREFUSED: Connection refused - connect(2) test_helper.rb
I am new to Ruby and needed some assistance figuring something out: I've been stuck on this error for 2 days. I know if I figure out the connect issue everything is going to work perfectly. Please ...
0
votes
0answers
191 views
Devise not creating remember_user_token cookie in production only
I'm using devise 1.1.rc0 within a rails 3.0.0 app. When a user signs in in development mode, a remember_user_token cookie correctly gets stored in the user's browser.
However, when in production ...
0
votes
1answer
169 views
Redirecting after devise sign up, but user is not logged in
I am setting the user to redirect to a subdomain based on a nested form parameter after signup. However, when I do the redirect, the user is not logged in. I can go back in and manually log the user ...
2
votes
0answers
129 views
Rails Devise / Warden Session in LocalStorage
I'm developing a web app in Rails 3.2 that's using Devise for authentication.
This works fine in the browser, but when you save it to the homescreen (to make it look more native), I run into my ...
0
votes
0answers
72 views
Change Devise SessionsController#new path
There are two ways to authenticate to our application, the usual Devise SessionsController#new action or via a special "intranet" only address that redirects you back to the application with some auth ...
2
votes
0answers
196 views
Devise warden error thrown for authenticate_user in functional Rails test
I have a resource where the new action requires a user to be logged in to view. If a user tries to create a new resource without being logged in, they are redirected (302'd) to the login page. My ...
2
votes
1answer
708 views
Rails 3 with Devise and rspec: Warden test helpers unreliable
I have an application using rails 3.2 and Devise. I have a request test suite using rspec and Capybara.
I have attempted to shift to using the Warden test helpers in my sign in helper rather than ...
0
votes
0answers
139 views
Warden gem authentication failure in devise
Hello Every one.
I have a application with API. That API have 2 versions v1 and v2. v1 have set of
controllers and v2 have set of controllers and both versions of controllers access the same
...
2
votes
4answers
525 views
Prevent session creation on rails 3.2.2 for RESTful api
How can i prevent the session store from creating a session on JSON/XML calls ?
My problem is that i save sessions in a database and it gets flooded on multiple api calls.
I'm using Rails 3.2.2 and ...
0
votes
0answers
136 views
Add recaptcha to devise login form and keep user input data after recaptcha verification failed
The following code works, but it needs further tweaks.
class SessionsController < Devise::SessionsController
def create
if verify_recaptcha
super
else
flash.delete ...
0
votes
1answer
372 views
Why is Warden/Devise appending resource name upon sign_in authentication failure?
I've been googling around for this like crazy and no luck so far.
So far sign_in and sign_out work fine. They redirect to the right action. My problem is when sign_in fails. I get sent to what looks ...
1
vote
1answer
407 views
Devise with user logged in using multiple scopes logs all but one out when using token_authenticateable
I'm using Devise with multiple scopes (in this case, a user scope and an admin scope) and admins are able to 'become' a user using the approach on the Devise wiki. This works well, except that I have ...
0
votes
1answer
229 views
Devise before_logout hook called with record=nil when signing out user with remember me option
I'm using Devise 2.0.4 (with devise-neo4j), Warden 1.1.1, Rails 3.2.3.
When I sign in without remember me option checked, I can sign out without a problem.
However when I sign in using remember me ...
1
vote
1answer
148 views
Warden :renew option
I'm using devise (1.5.3) and warden (1.1.1) and I don't need to renew session_id after user login/registration
https://github.com/hassox/warden/blob/master/lib/warden/proxy.rb#L160
if opts[:store] ...
1
vote
1answer
242 views
After upgrading to Rails 3.2.2 and Devise 2.0.4, logout does not destroy session
After upgrading my rails project to rails 3.2.2 and Devise 2.0.4, I am no longer able to logout. I am not experiencing this issue; instead, clicking logout does not properly leave me in a logged-out ...
1
vote
1answer
334 views
assert_routing bypasses warden/devise setup
In my (Rails 3.2) Test::Unit controller/functional tests, assert_routing is failing with this error:
1) Error:
test: with an admin user routing should route GET /admin/contracts to/from ...
0
votes
1answer
398 views
Rails 3 Devise Warden Login security hole that needs to be plugged, pulling my hair out
I have an issue with my login functionality.
When user clicks the logout link eveything works normally, session is destroyed and user can log in as a different user.
If a currently signed in user ...
2
votes
0answers
707 views
uncaught throw :warden in Devise Testing
I have just begun with testing Devise. I am unable to understand of why i am getting this error ::
Failure/Error: subject.current_user.should_not be_nil
ArgumentError:
uncaught throw :warden
...
3
votes
2answers
2k views
How do i login a user with devise?
Ok i have my rails application and I am running into a major issue with devise. I have a controller
class Users::SessionsController < Devise::SessionsController
prepend_before_filter ...
0
votes
1answer
231 views
Why is devise and warden not logging in the user
Here is my user session controller create action that the login goes through
# POST /resource/sign_in
def create
resource = User.find_by_email(params[:user][:email])
# check for inactive
...
1
vote
1answer
408 views
Undelete acts_as_paranoid deleted user on devise sign in
I have a Rails 3.1.3 app which uses devise for users authentication and soft-deletes them with acts_as_paranoid. I want the accounts to be undeleted upon password recreation, user sign up and user ...
1
vote
2answers
680 views
Problems with Warden::Manager after_authentication callbacks
This would probably be simpler for me if Ruby was my first language, but anyway, here's my question:
Using Rails 3.1, I'm trying to access some of the Warden Manager callbacks with Devise to create a ...
2
votes
2answers
603 views
Devise: rememberable means that last_sign_in_at is not updated by trackable
I have being using Devise, and relying on last_sign_in_at of the user model to work out if my customers have not returned within X days. However, I recently discovered that last_sign_in_at is only ...
1
vote
0answers
276 views
passing devise/warden session ID as params instead of via cookies/session
I'm developing an API and I'd like to support authenticated user
sessions. Is it possible to pass the session information used by
devise/warden after a user has been authenticated? I know I can use
...
0
votes
1answer
531 views
Devise returns 401 on updated Rails 3.1 app with slightly custom routes
I can't seem to get a user logged into our admin panel after upgrading our app from Rails 2.3.x to Rails 3.1.3. I'm using the latest version of Devise, which at the time of this post is v1.5.3.
A ...
1
vote
1answer
160 views
warden custom_filure
i use devise for API authentication. I overwritten SessionController:create method like this:
class Users::SessionsController < Devise::SessionsController
def create
resource = ...
1
vote
1answer
267 views
modify devise authentication to redirect when users are unconfirmed
I would like to change the sign-in behaviour of devise in a way to redirect to a different page when the user that is trying to sign-in is not confirmed.
I have the following code in my ...

