Tagged Questions
0
votes
3answers
25 views
How to prevent a wrong redirect to login with Devise?
Hi guys this is probably something simple but I can't find the answer on Google anywhere.
I have a welcome page on my Rails app and when you log in using devise I want to redirect the user from that ...
0
votes
0answers
34 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
1answer
43 views
Voting Website in Rails [closed]
I am new to rails and I haven't found much about my specific situation. I am trying to make a voting website where people can vote for things such as a school president, treasurer, etc and when voting ...
0
votes
1answer
71 views
User post lost after login with Devise authentication and Rails?
In my Rails app (with devise authentication) anyone can start creating a post, but if not signed in when they hit save/create/post they first have to create a user name or login = perfect.
My code:
...
0
votes
0answers
45 views
Devise user, active admin user able to sign in same time
I have user model created by devise and active admin used for admin interface,
Assume i'm signed into my application using the user model created by devise, and in the new tab when i type ...
0
votes
1answer
54 views
Devise when login strip whitespaces around password
I'd like to let devise strip leading and trailing whitespaces around the users password.
So I changed in devise.rb
config.strip_whitespace_keys = [ :email ]
to
config.strip_whitespace_keys = [ ...
1
vote
0answers
38 views
Devise authentication responds sometimes with 302 instead of 201
I have modified Devise's session controller slightly to make it respond with 201 code even if an user is logged in:
class SessionsController < Devise::SessionsController
# POST /resource/sign_in
...
0
votes
1answer
68 views
Log in user after accept invitation using rails with devise_invitable
I use devise_invitable with Rails and need some help. I want make user logged in after accept invitation. Here is my InvitationsController
class InvitationsController < ...
0
votes
1answer
56 views
rails3 + rspec2 + device login is not working
I have the following rspec setup with devise. For pre login I have set up RSpec as follows according to David Chelimsky's answer for this post
#spec/support/devise.rb
Spec.configure do |config|
...
0
votes
0answers
24 views
devise username sign_in
I have struggled with this for two days now. Rails 3.2.11, Devise 2.2.1, CanCan 1.6.8..
I can sign_up, and seed a user but on sign_in I always get Invalid login/username or password.
I have tried ...
1
vote
1answer
159 views
devise login fail message
I followed this question Devise redirect after login fail and it works great, but I am getting a flash notice telling me that I need to login to continue, and the message I need is that the password ...
0
votes
0answers
56 views
Rails 3 + Devise : issue with custom routes
I've followed the Devise wiki to switch the login route from /users/sign_in to /login. My routes file looks like this:
devise_for :users, :controllers => { :omniauth_callbacks => ...
0
votes
0answers
25 views
display devise login form under http://login.domain.ltd?
Im trying to make a login on login.domain.ltd with devise. But have a hard time getting it working. Still no resoltion found :( after extensive searching.
What would be the way to hook the login ...
0
votes
1answer
247 views
Devise based user authentication programatically
I am making application for user login based authentication programatically that is using a devise gem but couldn't succeed. I know that for devise based login, I need to pass user email and password. ...
0
votes
0answers
73 views
rails how to use two devise models
I'm using Rails 3.0.9 with Devise 1.4.8
My app uses two devise models User and Customer for authentication
I'm using separate controllers to create User and Customer resource and using same sign-in ...
-1
votes
1answer
64 views
Two different logins and usernames from the same table
I need two kinds login if they refer to different controllers, example:
site.com/consumers
site.com/panel
site.com/consumers login is to make comments and site.com/panel is for the administrative ...
0
votes
1answer
91 views
Devise Custom Strategy Requires a New User Login Twice for the First Time to Use the Application
I'm basically following https://github.com/mattconnolly/devise-custom-strategy-demo/blob/master/lib/my_authentication.rb
Everything works well, but there is one bug, if I'm a new user to my ...
1
vote
1answer
935 views
Rails Devise redirect after login
I am using Devise with Rails for my user login. It all works great, however, i am unable to get a specific redirection working.
I am new to rails so the method in which i am doing things may not ...
0
votes
1answer
46 views
Login form dosnt start user session
im using Devise and Bootstrap in my rails app
in the bootstrap navbar i have this login form :
<form class="navbar-form pull-right">
<% if current_user %>
...
2
votes
2answers
289 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
1answer
155 views
Devise Resetting Session On Login
I've got the following defined in my application_controller.rb file:
def redirect_back_or(default)
redirect_to(session[:return_to] || default)
session.delete(:return_to)
end
def store_location
...
0
votes
1answer
39 views
Devise: how to disallow logging different roles from the same session, at the same time
I created three different roles (User, Admin, Manager) using devise's rails generator, they are stored in different tables and models...
How can I forbid someone to to login two different roles ...
0
votes
1answer
213 views
How to direct user to a specific page after logging in with Devise and Rails
How do I redirect a user to a specific page when they login on a particular form I create with Devise? There's this howto page for Devise on how to redirect to a particular page after sign in. ...
0
votes
2answers
256 views
How to put a login form in the header for Devise and Rails
I want to put a login form in the header of my website. I use Rails 3.2.8 and the latest Devise. In the app/views/devise/sessions/new.html.erb file a login form is created with:
<%= ...
1
vote
1answer
705 views
Rails devise - Facebook + Twitter +
I'm thinking to use devise gem for a new Rails app I'm working on.
I'm a bit confused about a thing. The app will allow the user to connect to FB, Twitter and possibly other social network ...
0
votes
0answers
204 views
Login with devise fails in production mode. cache_classes = true causes invalid password message
I have a problem with Devise in production mode. Everything works fine in development: users can subscribe, log in and log out without problems.
When running in production mode, users can register ...
2
votes
1answer
59 views
Rails, devise and android.. I want the android app be remain logged in
Here is what I'm thinking about rails server and android. Please let me know if following steps make sense.
At first, when the android app is launched for the first time, user will type in his/her ...
1
vote
1answer
197 views
Where is Sign In View located for Devise- Rails 3
This might be a stupid question, but my Sign In view looks like total crap and isn't roping in any of the CSS styles from the other pages.
For whatever reason, I cannot find this view to even edit ...
1
vote
1answer
190 views
No Route Matches in Ruby on Rails
In my ruby on rails project, I am using devise as the authentication plugin. Now I have added the change password functionality to the project and when submit the form, I'm getting an error No route ...
1
vote
1answer
557 views
Rails devise sign in
I am trying to write an API for a mobile application which authenticates using JSON. I am using Devise for the authentication in my Rails app.
On trying this:
curl -v -b cookie.file -c cookie.file ...
0
votes
1answer
328 views
Devise - Redirect user to last viewed page
I'm designing a portal, where user answers series of questions. Consider there are 10 questions, and user attempts 5 questions and logs out of portal. He logs back in on the next day. Then he should ...
0
votes
1answer
101 views
How to set Devise to require one of email or username to be populated for saving?
I followed this: https://github.com/plataformatec/devise/wiki/How-To:-Allow-users-to-sign-in-using-their-username-or-email-address
Which works. So now I can login with either :username and :password ...
0
votes
1answer
104 views
devise + capcha + on x wrong passwords?
Are there some good resources tutorials or anyone has tried to implement a Capcha on devise when user enters x wrong passwords?
The idea is that the capcha shows up on to many requests to prevent ...
0
votes
1answer
288 views
Devise redirect after users fail signin
I know there is a wiki page about it, but since I'm very new to Rails I am having lot of difficulties in understanding that page.
I had to override registration controller for my user. When user ...
1
vote
1answer
103 views
Devise + Omniauth for google only login
I'm developing a web application that will interact with google APIs.
Since the only way to use the application is though a google account I want to only allow login through a google account.
I ...
0
votes
1answer
112 views
rails,devise, heroku and multiple dynos
We have an application running on Heroku, that has multiple dynos. Let's say the application has 2 dynos, and when the user logs in, he's being served by the first dyno. If for some reason, subsequent ...
0
votes
1answer
174 views
Rails 3- Devise - Sign in error after login with facebook
I setup devise & omniauth to authen,
After login with facebook, i create a user and generate a password for user
user = User.new :fullname => auth_hash['extra']['raw_info']['name'],
:email ...
0
votes
1answer
340 views
Rails, Devise: invalid login redirects to root page instead of displaying errors
For some reason, my app redirects failed session creation to the root page of the application, instead of displaying errors on why the login failed, such as, wrong password.
I captured the http ...
1
vote
2answers
299 views
Devise authentication logs in after password change
Devise authentication gem in Rails.
How to prevent automatic logging in after password change by "forgot password" link?
Ideally it would be nice to display the page with message "New password has ...
0
votes
2answers
70 views
Adding a custom field to the sign-in in Devise
I tried adding to the user model :
attr_accessible :client_version
add added column client_version to the DB using the migration
In the sign_in request I've added the field:
...
0
votes
1answer
461 views
Devise Auth. gem sign out does not work as I ecpected
I integrate Devise to my app and here my current codes that I see important for the problem.
here is the my sign out link
<nav class="round">
<ul>
<li>
...
1
vote
2answers
93 views
How to render particular attributes of an object using devise?
I am using devise gem, everything works great, but the problem is after the login the entire user object is rendered. So if I send a json request to login it will return everything that the user ...
0
votes
1answer
166 views
Manual login user with devise
Can anyone give an example or link to tutorial how can be implemented manual signin for users and get session_id.
I am porting an application from Rails 2 to Rails 3, that used before ...
1
vote
1answer
619 views
Active Admin is having problems signing in when after_sign_in_path_for (devise) in my app
So I am using Devise for user authentication in my rails app. I have a setup that checks if a user is a member of a league. If he is just a member of 1 league he gets redirected to the user_league ...
0
votes
1answer
63 views
Do I have to log in every time when testing a logged in user with Cucumber & Devise gems?
I want to write up a scenario that looks something like:
Given I am logged in
And I am on my profile page
Then I see my name
For the "Given I am logged in" - do I need to write something like:
...
2
votes
1answer
333 views
Implement multiple sign in with Rails and Devise
How would I mimic Google's multiple sign-in in my Rails app? Essentially, I need to allow a user to sign in to two or more completely different unlinked accounts and to be able to switch between them ...
0
votes
1answer
84 views
Devise refused to login but no error is given
Login for the rest of the accounts in my devise system are functioning normally (seemingly). But one of the accounts is acting strange.
This user reset her password, which worked, and logged her ...
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 ...
0
votes
2answers
632 views
Record IP Address of user when they log in with Devise (Rails 3.2)
I'm using Devise to handle my authentication for my site. Is there a way I can add a function to record a user's IP address when they log into my app?
We are just trying to see where people are ...
0
votes
1answer
332 views
Using Username or Email for Devise Causing Error
I followed the wiki post to add username as another authentication method for Devise.. https://github.com/plataformatec/devise/wiki/How-To:-Allow-users-to-sign_in-using-their-username-or-email-address
...


