Tagged Questions
0
votes
1answer
24 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
1answer
16 views
Keeping information linked to a non signed in user un rails
I have a rails application with devise. When the user is signed in (user_signed_in?), I can access it and retrieve information for it (eg current_user.last_search). But I would also like a way to save ...
0
votes
1answer
19 views
Rendering Devise new sessions form with ajax
I'm using devise and trying to get its login page to render as a dropdown from a header. I've imported devise into views and changed it to a partial sessions/_new.
This link from the index page
...
0
votes
1answer
25 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
20 views
How can I pass email of unconfirmed user to the session (Devise)?
I have a registration form, and after registration I want browser to remember user's (still unconfirmed) email. How could I do that? I assume I can do this somehow with build_resource of ...
0
votes
0answers
38 views
Logout for multiple Devise models
I have the User class which is a Devise model, and two classes which simply inherits from User. In routes.rb it looks as presented:
devise_for :users, :path => '', :path_names => {:sign_in ...
1
vote
2answers
209 views
Rails devise if session sign_in error, then redirect to some page (back)
How can i change standart devise session_controller, so that if, for example i entered incorrect password i'm redirected :back (is not required), and see my error's...
For what i need this? Becouse i ...
0
votes
0answers
31 views
making client side notifications of a timeout in rails using devise timeout_in and timeoutable
Is there any way rails devise can warn a user before the timeout happens, or just timeout on its own (without doing a post) once the timeout_in time is met. I suspect it needs some sort of jquery on ...
0
votes
0answers
24 views
After signing out from rails app not able to signin with different facebook id
I have a rails app with devise and facebook authentication. First time sign in with facebook is working fine but once I signed out and try signing in again with facebook its taking me to directly to ...
1
vote
1answer
298 views
Multitenancy (acts_as_tenant) with Devise (users default scoped by subdomain) breaks sessions
Gems
ruby 1.9.3
rails 3.2.11
devise 2.2.3
acts_as_tenant 0.2.9
Code
All my models are scoped by a domain_id:
class User < ActiveRecord::Base
acts_as_tenant(:domain)
#...
end
Then, in my ...
0
votes
1answer
95 views
How to merge facebook account into existing account with Devise
I followed the steps here and was running into some problems in merging the accounts
Based on the instructions, I added the following method to my ApplicationController
def ...
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 ...
1
vote
2answers
66 views
How can I logoff a specific user in a Devise powered Rails app?
By default, the mechanism in Rails seems to be setting a session cookie, to keep track if a user's logged in or not. While this would ensure that a user is logged off when he closes the browser, I ...
0
votes
2answers
127 views
Ruby on Rails - ApplicationController
Am working on some guest account feature in my game application.If u register as a game user then devise gem loads the current account id to the session automatically. But when a user is a guest, am ...
0
votes
0answers
94 views
Cucumber/capybara session lost
I've been breaking my head over two days for that!
I am having cucumber tests (capybara/webkit), running rails 3.2.6 ruby 1.9.3, using devise for authorization.
Having problem when Background step ...
1
vote
1answer
160 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
156 views
Customized Devise sessions controller doesn't work as expected
I customized some of the Devise's controllers following offical instruction :
config/routes.rb has been modified with :
devise_for :admin_utilisateurs, :controllers => {:registrations => ...
2
votes
1answer
82 views
Conditional sign out in Rails app using Devise
I'm creating a rails app where users log in and look at various pages. Some are private, and others are public. If a user signs out while viewing a private page, he should be redirected to root_path. ...
0
votes
0answers
178 views
Devise No route matches [GET] “/admin/logout”
i can't go to the sign-out path in my app now:
No route matches [GET] "/admin/logout"
in routes.rb
devise_for :admins, :skip => [:sessions, :passwords]
as :admin do
# sessions routes
...
0
votes
0answers
93 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
1answer
105 views
How to add or remove a record in database based on user login/logout, I am using Devise gem for Ruby on Rails?
I have certain user settings which I need to load when user logs in & destroy his custom settings after he logs out. I am using Devise gem. Also I intend to keep this settings record id in Rails ...
3
votes
1answer
471 views
Rails 3.2.8 - Share Devise Sessions Across Subdomains with POW
I am trying to set up a simple subdomain-based blog in rails 3.2.8. Basically it will have sites, users (authenticated through Devise), and memberships to connect users to sites. I set up POW so ...
2
votes
1answer
90 views
Overriding Session Controller Prevents custom views being used
Devise (2.1) was using my custom views fine until I told it to use a custom controller. Now it ignores my custom views.
Previously everything worked fine:
Tell Devise to use custom views in ...
0
votes
0answers
60 views
Rails Devise Session Being Killed
I'm experiencing a problem with some of my cucumber features for my rails app. I suspect that (for some reason) I'm losing my devise session part way through the test.
I'd like to determine this for ...
0
votes
0answers
175 views
Invalidate invalid devise session
I've a rails 3 app using devise. I recently switched the class I used as user model, because we are using a different persistence backend now.
The problem ism that there are still browsers out there ...
1
vote
1answer
39 views
Is it possible to carryover data in the session?
Let's imagine I'm not logged in, and the server stores something in the session, like
session[:color] = blue
Is is possible to keep the setting for the user after logging in? It seems that after I ...
0
votes
1answer
291 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 ...
0
votes
1answer
341 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 ...
0
votes
0answers
92 views
Why does authlogic store credentials in its own cookie?
I am wondering why Authlogic (and Devise) store login details in their own cookie. Is there a reason it does not store this information in the _app_session cookie?
There seems to be a security ...
2
votes
4answers
533 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
1answer
174 views
Devise session length counter
I need to count how long each user is logged in - I'm using now devise - is there a feature/plugin for Rails/devise that counts this?
This is not a question about setting 'keep me logged in' option - ...
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 ...
1
vote
2answers
2k views
How can I find a devise user by it's session id?
Given session["session_id"] is it possible to find the logged in User to which that session belongs to?
0
votes
2answers
435 views
Devise Session destroy with ajax request how should I approach
I have a form where user can fill in the details the form field contain an email_id column
Now if the user is logged in there would appear a link stating
"NOT USER NAME" e.g "NOT VIREN NEGI" ...
1
vote
0answers
148 views
Devise not create session when i logged in at firs time
I have some problems with Devise and user's sessions on my site.
I have admin panel where i can create new users manually. In Admin::UsersController#create, before @user.save i use ...
2
votes
2answers
547 views
Detect when a devise session expires
I'd like to record when a user's session has timed out, using devise and :timeoutable.
At the moment, :timeoutable is working as expected and redirecting users to the login page after the specified ...
0
votes
1answer
511 views
Login to a RESTful Rails app with HTTParty
I have a web app with a clean RESTful JSON API, based on Rails 3.2, Ruby 1.9 and Devise 2.
I would like to write a small script based on HTTParty web client in order to perform some actions ...
0
votes
2answers
744 views
Devise end session browser close
I am using 'devise' for password authentication in my ruby on rails app. Once I successfully login and I close my browser and open a new browser window I am still logged in. Lets say I am using ...
1
vote
0answers
212 views
Devise/LDAP sessions looking for a password even though User model doesnt require one.
I am using Devise and the devise_ldap_authenticatable gem to authenticate users. Users sign in with their company username and password which authenticates them and creates a session.
When I first ...
10
votes
2answers
2k views
Rails 3 - How can you get access to Devise's current_user in the IRB console?
I'm doing some design/debugging in IRB and need to login a user and then be able to use current_user in my efforts.
From Brian Deterling's answer to another question, I have been able to ...
2
votes
1answer
284 views
Sharing sessions between rails 3.1 and 2.3.12 using devise
I'm attempting to share sessions between a rails 3.1 app and rails 2.3.12 app. The rails 3.1 app is a subdomain of the 2.3.12 app. Both apps use devise for authentication (different versions for rails ...
1
vote
1answer
414 views
Sharing User Session Between Multiple Domains
I am building an app which will be accessible through different domains. Depending on the domain name it is accessed from, it will behave slightly differently.
What I want to be able to do is that ...
0
votes
1answer
397 views
Devise and current_user issue when using namespace
On core website I use standard Devise configuration for user authentication. In routes.rb:
devise_for :users
Now, I have a namespace, lets call it "frame", being used for display some views via ...
1
vote
1answer
345 views
Rails devise session
In devise, say if i wanted to force a session to start, not checking if email or password are right, just starting a session for a particular user, how would i that
(so maybe, the user sends in a ...
1
vote
1answer
224 views
iPhone Web App - Doesn't Remember Login
Okay,
So I'm running a Rails 3.1 App, with iPhone Support - So I can basically save the web app to my home screen, and it'll have it's own icon + splash screen etc.
I am using Devise to handle ...
3
votes
1answer
4k views
Rails devise Sessions Controller
In devise, many of the pages that teach how to accomplish certain things require editing a sessions controller. I set up devise using this ...
1
vote
0answers
138 views
How to customize devise session table
I am using db-session and just want to add one more column to the session table.
I'm not getting how to add the specific column value with session object and store in db while creating a new record ...
2
votes
3answers
2k views
How to access session from Warden/Devise after_authentication callback in Rails
I'm trying to access the current session from Warden's after_authenticate callback (running underneath Devise) in Rails 3.
At the top of my application controller I want to do something like:
...
13
votes
4answers
3k views
Devise limit one session per user at a time
My app is using Rails 3.0.4 and Devise 1.1.7.
I'm looking for a way to prevent users from sharing accounts as the app is a subscription based service. I've been searching for over a week, and I ...
