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
1answer
70 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
23 views

Devise Rails Sign Up to site with Net::Http redirect_to the site

My situation is that I want to register a user two sites at once and then redirect the browser to the external site. I am able to accomplish the sign up to the second site using Net::Http. Devise ...
0
votes
2answers
63 views

Identifying the user after sign out for after_sign_out_path_for method in Devise

For after sign in path, you can do the following: def after_sign_in_path_for(resource) if resource.class == User if resource.sign_in_count < 2 '/dashboard' else ...
0
votes
2answers
155 views

Rails Devise/Token authentication: redirect if token wrong or missing

I've implemented Devise with token authentication/json api. My problem now, whenever the "?auth_token" is wrong or missing, devise redirects me "HTTP/1.1 302 Moved Temporarily" to my intended json ...
0
votes
2answers
481 views

error: “Render and/or redirect were called multiple times in this action”

I want to redirect by the role_ids of the user: if it's equal to 2, redirect to workers_path. if it's equal to 1, redirect to tasksadmins_path. I defined the next things: application controller: ...
0
votes
0answers
45 views

Devise - redirect after admin user profile update

I am having an issue with devise routes. The issue is that after updating an admin profile, it redirects to the homepage of my application and not to where I want. I have found this code: def ...
0
votes
2answers
77 views

redirect_to doesn't work properly

I use devise and tried to do the next thing: when the user sign in/up, I want to redirect him by his role_id (I let id of 1 for some users and 2 for the others). if his role_id is 1, redirect him to ...
0
votes
2answers
54 views

URL redirection for rails project

I installed devise on my rails projects, and after navigating from this URL - http://localhost:3000/users/sign_in it is redirecting to this URL - http://localhost:3000/ really dont know what ...
0
votes
1answer
177 views

Devise - Redirect automatically from root url if signed in

A user named Carly is not signed up and arrives at the index page. She signs up and gets automatically redirected to the main dashboard page. The user Carly which is now named CarlyCoolness123 closes ...
1
vote
1answer
56 views

reidirect_to inside view - RAILS - DEVISE redirect to user_session_path

How do I redirect_to a certain path or page inside the view. I've read that redirect_to is an ActionController something, and cannot be used in the view. How can I do this in the view using only ...
0
votes
0answers
51 views

Rails devise registration redirection

I have such devise controller: class RegistrationsController < Devise::RegistrationsController def create if verify_recaptcha super else ...
2
votes
1answer
185 views

Rails 3 - Devise request.referer always has sign_in url

I am using devise. I want to redirect to previous page after sign in process is successful. The problem I am having is that the request.referer always has sign_in URL in it. How can I get the URL of ...
0
votes
1answer
56 views

open link from ms word

we have a tools developed by rails 3.1.8, which export products information to ms word, then product owner could click link in word to edit the product details in our application if some update from ...
0
votes
0answers
29 views

Rails: Page goes to bottom after logging in with Omniauth/Facebook

I have a signup and signin button on my webpage, which when clicked displays a modal showing the login form. If I click 'login with facebook,' it logs me in but it takes me to the bottom of the page. ...
1
vote
1answer
933 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
113 views

When does Devise store the location for stored_location_for_resource

I was having problems redirecting to the last visited page when that page required a sign in Devise Resetting Session On Login and somebody pointed out that you could follow the code example here: ...
0
votes
1answer
326 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
0answers
156 views

Rails 3.1 + Devise after timeout: can't override redirect to login

I've read several questions regarding this issue, and I've placed this code in application_controller.rb, that is supposed to override the default sign out route: def ...
1
vote
1answer
914 views

Devise: Redirect to previous page after authenticating user? (request.referer results in loop)

I am using Devise and Omniauth for facebook authentication. I am trying to redirect the User to the previous page after the User logs in either with Devise(regular) or Omniauth(fb). ...
0
votes
1answer
833 views

Devise authentication: log out and redirect

Is there a way to write Rails method which will log out and redirect to custom page? I'm using Devise authentication gem. I do not want that ALL logouts will be followed by this redirect, but only in ...
0
votes
1answer
138 views

How to alter the redirect path after a user is created?

In my app, im disallowing user registrations and having it being managed by the sole admin user as the application is only intended to be use by a very small team of people. When I create a user at ...
0
votes
1answer
251 views

Devise redirects to root after I redirect to sign_in

I'm trying to add a new login condition to an app that uses Devise. If a request comes from an IP that's not on my whitelist, I want to prevent the login and redirect back to the sign_in page with a ...
1
vote
2answers
117 views

Flash message if a user clicks a link?

I have a couple of links of my home page to different parts of my site that are restricted to those who are logged in. If you are not logged in then you are redirected to the sign up form. This ...
0
votes
2answers
214 views

include HTTP method in Javascript redirect?

In my layout, I have a devise sign in / sign out link, like so: =if user_signed_in? then link_to "_", destroy_user_session_path, :method => :delete else link_to "_", new_user_session_path, :method ...
0
votes
1answer
631 views

wrong redirect after sign up fail devise 2.0 and rails 3.2.3

I have this devise routes in routes.rb file: app::Application.routes.draw do scope ":locale", locale: /#{I18n.available_locales.join("|")}/ do devise_for :users, :controllers => { ...
0
votes
2answers
323 views

Redirect to sign-in page if not authorized in Rails

I have Devise and CanCan in my Rails app. I think by default, it should redirect users to sign-in page if users try to login to unauthorized page. But somehow, it doesn't work for my app. How to I ...
0
votes
1answer
355 views

Devise: users/password/edit redirects to after_sign_in?

I'm having a bit of trouble understanding routes and leveraging Devise. In my app, I'm attempting to utilize Devise for letting my users set new passwords, but each time I attempt to hit ...
0
votes
1answer
283 views

Devise - redirect to the user clicked after sign in, if the user is not signed in

I am using Devise in Rails 3. I have used before_filter :authenticate_user! to redirect to sign in if a user, not logged in, clicks a link. This works, but after login, it redirects back to the home ...
0
votes
1answer
169 views

SaaS Rails Kit: Redirect after login?

I just started using the SaaS Rails Kit and need some assistance with redirecting my users. I want to my registered account users to always be taken to my jobs page (jobs/index.html.erb) after ...
5
votes
1answer
5k views

rails:3 Devise signup Filter chain halted as :require_no_authentication rendered or redirected

I am using Devise in my site I create admin namespace and giving functionality of create user by admin. my routes are as under devise_for :users,:has_many => :comments, :controllers => ...
0
votes
1answer
433 views

redirect_to with params in rails

I have an application with subdomains. When a User logs in at the root domain. I want to redirect him/her to his/her firms subdomain. I am useing devise. This is what I have so far def create ...
2
votes
2answers
2k views

Rails Devise after_sign_in_path_for(resource) method not functioning as expected

I want to redirect an inactive user to the registration path to collect some information. Here are two approaches I took but neither is working: I overrode the devise after_sign_in_path method as ...
2
votes
2answers
266 views

Change hostname for redirect in Rails using Devise

I've got some special setup to do for my Rails app. My app is hosted behind a reverse proxy and it is for some reason rewriting the requests. The server the app runs on only has an internal IP ...
0
votes
1answer
103 views

rails nested devise redirect

i have an app with nested resources. my routes are: resources :teams do resources :blogs end in my blogs controller, im using a different layout, by adding layout "teamlayout" to the ...
0
votes
1answer
210 views

Devise Gem Redirect After Two Different Registration Forms

So currently my web app has two ways for a user to register. One is from clicking a button on the homepage called 'Post a Project' that will take user to multi-step Post a Project wizard. The other is ...
2
votes
1answer
342 views

Losing Oauth Authorization When App Redirects to Page Tab

I'm using the Oauth redirect authorization method to provide authorization for a page tab iframe application. The flow works like this: User loads page tab (unauthorized) User clicks authorize link ...
0
votes
3answers
369 views

redirecting users away from sign in page after login in Rails with Devise

I would like my users to be redirected to the home page if they visit "/users/sign_in" after they have already signed in. How could I do that?
8
votes
3answers
4k views

After a successful DEVISE login, how to redirect user back to previous action that required login?

I have an ajax voting button: If a user clicks on a "thumbs up" image, but is not logged in, then they should see a dialog box that asks them to login first. To do this dialog box,I'm using jQuery ...
4
votes
2answers
3k views

Rails 3 - Devise With OmniAuth - Redirect after signing in goes to /users/sign_in

Im using devise with omniauth for signing in users with facebook. I want them to be redirected after signing in to the page they were on after before signing in. I've used the def ...
15
votes
4answers
5k views

Devise and stored_location_for: how do you store the return location?

I have a page whose path is (e.g.) /premises/92 on which I'm displaying "please [log in] or [register] for additional information" if the user is not logged in, and I want devise to return that same ...
14
votes
2answers
5k views

Devise redirect after login fail

All the questions I've found are related for a successful login with the helper after_sign_in_path_for(resource) I have a login form in the index of the site, and when the login fails it redirects ...
2
votes
0answers
571 views

Devise sign in redirects to last visited page - but how to make exceptions to that?

I have a problem with my devise redirects. What I got working is that when people sign in to my app, they get redirected back to the same page they were on (the first method below). However, I would ...
0
votes
2answers
536 views

How can i redirect a user with devise and cancan in rails 3 when the user comes back to the site and is still logged in?

I am trying to find a way to redirect a user when they come back to the site if they are still logged in. I want them to be redirected to their specific home page. I am using rails 3, devise, and ...
6
votes
3answers
6k views

Rails 3 and Devise: Redirecting to page following signup (confirmable)

I have a Rails 3 project with Devise, confirmable enabled so the user has to confirm their account through email after registration. Currently the project returns the user to the login page and throws ...
2
votes
1answer
757 views

Redirecting after a login to the original task

So I want to send emails to users with some links which you can click on to do things, but if the user isn't already logged in, I'd like to be able to let the user log in and then redirect him back to ...
2
votes
1answer
450 views

Why is rails trying to redirect?

I am working on a new app and am trying to customize where Devise sends the signed in or newly registered User after the submission of the sign-in form. I want to send the User back to the page where ...
3
votes
2answers
2k views

Ruby-on-Rails: How to get rid of “you are being redirected” page

I am overriding Devise's failure response so that I can set a 401 status code. However, when the user fails to sign in, they are redirected to a page with a "you are being redirected" link. If I ...
6
votes
1answer
6k views

devise sign_in_and_redirect never seems to work

I would like it, if after a user logs in, that it automatically redirect to their previous location, but this never seems to happen, it always redirects back to the root location. From reading the ...