Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.
0
votes
0answers
22 views
Strange behaviour in devise
I am currently working on a Rails project where I am encountering an extremely weird issue with Devise . Initially my client wanted me to have a two step registration i.e. a user fills out a basic ...
0
votes
3answers
14 views
Send a welcome email after the user has confirmed his account
I am using devise and actionmailer. I am wondering how do I trigger an actionmailer method after the user has confirmed his account on the app and not before This actionmailer method is nothing but a ...
1
vote
1answer
43 views
devise-async & sidekiq - RSpec integration spec fails
I have the following integration tests written for my application's Devise based authentication:
# password_resets_spec.rb
require 'spec_helper'
describe "PasswordResets" do
it "emails user when ...
0
votes
0answers
14 views
Ruby on Rails relationships. Best practice on devise with current_user
I am recently working on my first project in Ruby on Rails. I decided to use a gem called Active Admin ( http://activeadmin.info/ ) to my application, which it have incorporates the gem Devise.
The ...
0
votes
1answer
10 views
Rails 3 & Devise : Notificatios related to sign up confirmation not working
I'm using devise for my Rails 3.2.9 application. The notifications related to confirmation (as below in devise.en.yml file , under en, devise, confirmations) do not appear after sign up. After sign up ...
0
votes
0answers
23 views
Unwanted session parameter added to RestKit request
I am trying to login to my RoR backend running Devise, by using RestKit 0.20.0. I am trying to achieve a request with the following parameters:
Parameters: {"password"=>"[FILTERED]", ...
0
votes
1answer
21 views
Devise routing error “No route matches [GET] ” for all routes
I recently installed devise (migrated from restful authorization), and when I tried to check the site, I got the following error No route matches [GET] "/", this error came for every URL I tried.
...
0
votes
0answers
8 views
Devise touch session (prevent timeout)
I'm using Devise timeoutable to time out user sessions, and am trying to use client-side AJAX calls to occasionally touch the user session and keep the session alive. However, the server-side call in ...
1
vote
1answer
11 views
Rails + Devise: How to override redirect for the before_filter “authenticate_user!”
I am on Rails 3 and the latest version of Devise, and I have a before filter in my AdminController to authenticate_user! I need to store a session variable for the request.referrer before it redirects ...
0
votes
1answer
19 views
Rails 4 + Devise 3.0.0 Adding Username
I'm working with Rails 4 and Devise 3.0.0 and am new to using these new strong paramters. I added a username to the User model using the documentation on the Devise wiki. The problem I'm running into ...
-1
votes
1answer
21 views
Setting my selected image as a background to the iphone devise
In my iOS application i have ten images in the xib with thumbnail size, How can i set my selected image from ten images as wallpaper for the ios device. Thanks in advance.
0
votes
1answer
16 views
How to generate Devise views in Rails 4
Devise's documentation says to enter the following to generate the views:
rails generate devise:views
However, when I enter that, rails gives me usage instructions:
new-host-6:test4 scott$ rails ...
1
vote
0answers
33 views
Can't get new Rails app with Devise to display sign_in/sign_up pages
I get the following error:
ExecJS::RuntimeError in Devise::Sessions#new
Showing C:/Users/me/RubymineProjects/my_project/app/views/layouts/application.html.erb where line #6 raised:
(in ...
0
votes
0answers
12 views
How to get libv8 gem installed on Windows with Ruby 2.0?
I'm trying to get Devise to work, seems like it requires therubyracer gem. That requires the libv8 gem. I got an error it couldn't find python2, so I installed python 2.7 and copied python.exe to ...
0
votes
1answer
23 views
Encrypting (not hashing) and storing user passwords on a rails server, using devise cookies
Got a bit of an issue where I am required to maintain a secure connection with one server that proxies out requests to another, over basic authentication. However I can't be allowed to gain access to ...
0
votes
1answer
14 views
How to overwrite Devise session#create method
I have valid autentication which autenticate user by tables users.
But in this table i have boolean field ( "corrected" => true/false )
How can i autenticate users which has field "corrected: true" ...
0
votes
1answer
17 views
Processing create immediately after authenticate_user
I have a CommentsController. I allow a Guest (non-authenticated user) to see the form for posting a new comment and allow them to submit it.
Now, I wanted to authenticate my user after they submit ...
0
votes
1answer
39 views
Why is the colon missing after “http” in my URL?
Here is my reset password Haml file:
%p= link_to 'Changme', edit_password_url(@user, reset_password_token: @user.reset_password_token)
The first strange thing is that there is no route ...
1
vote
0answers
23 views
ApplicationHelper methods not available in Devise Controller
I've a legacy Rails 3.2 app in which I'm using Devise for authentication. Previously, Devise had been using the default application layout for it's SessionController, and all the app's controllers ...
0
votes
1answer
9 views
Rails/Devise - Determining when user session will expire
When using the timeoutable module for Devise, how can one determine how long it will be before the current user's session expires? The goal is to include this value in all responses so client side ...
0
votes
1answer
18 views
How to send a token from the iphone to rails backend?
When I'm asking the backend for a token with my username + password, it returns:
{"token":"5KB2bTHSSLgBeZjMqvfa"}
This is what I have working so far. I get the token, it is successfully saved.
- ...
0
votes
1answer
27 views
ActiveAdmin and Devise - skip_confirmation! on create action
I want to call user.skip_confirmation while his account is created by admin in admin panel. I want user to confirm his account in further steps of registration process, but not on create. The only ...
1
vote
3answers
21 views
Devise validation constantly failing on sign up
Making a simple Ruby on Rails app as practise that requires a user to sign up.
Everything works well until I implement regex validation on a 'profile_name' field
Here's my 'user' model:
validates ...
0
votes
1answer
33 views
Heroku confirmation token - Devise error (even with Sendgrid)
I am using Heroku, Devise & Sendgrid.
These are my settings in environment/production.rb:
config.action_mailer.default_url_options = { :host => 'myapp.herokuapp.com' }
# ActionMailer ...
0
votes
2answers
16 views
How to fix an error with undefined error with cancan and devise in rails?
I am trying to create permissions in my Rails app with Devise and Cancan.
ability.rb:
class Ability
include CanCan::Ability
def initialize(user)
if user.role == 'admin'
...
1
vote
2answers
78 views
Devise not working with Rails 4.0rc1
Is there a way to get Devise to work with Rails 4.0rc1? I get the following error when trying to start the rails server or even to generate the Devise views:
...
1
vote
0answers
15 views
How to implement Devise Login with Facebook for Mobile Device
I have to write an API for mobile device to implement Login with Facebook using Devise. I have done the web implementation and the as per my research the Facebook Login flow works as follows:
Step 1: ...
0
votes
0answers
6 views
Rails devise denied access user on edit and destroy goods
I have two models User and goods, an user can insert has_many goods and an good belong to user so :
i would users can't after insert a good , delete or update the good..
I use Devise for the Users ...
0
votes
0answers
17 views
Rails devise sending emails to wrong email address
I successfully installed devise in my rails app and the user registration works perfect. I've also set it up such that users can confirm their accounts by sending an email. This works fine when the ...
0
votes
0answers
19 views
Devise Loses the Username on Failed Login
A huge pet peeve of mine is when I mess up a login, and the page comes back with the username (email or whatever) blank. This crappy user experience is even worse on mobile.
Upon failed login Devise ...
2
votes
1answer
31 views
How does devise know what table you want form data written to?
Here is devise' 'sign up' view (new.html.erb).
<h2>Sign up</h2>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= ...
0
votes
0answers
22 views
Issues with stripe not creating the token
I am following the RailsApps tutorial. http://railsapps.github.io/rails-stripe-membership-saas/
For some reason the registrations.js file is not creating the token after the credit card information ...
0
votes
1answer
42 views
Devise AJAX - POST request : current_user is null
I try to develop a single page application with authentication. I use Devise (Rails) and AngularJS.
For some different reasons my rails application and my angularjs application are not on the same ...
0
votes
0answers
39 views
How to automatically log in users after they sign up (with Devise and token authenticatable)
I currently have an app that uses regular Devise authentication for logging in and out,
Before insatlling token_authenticatable, when a user signed up , he was automatically logged in (even before ...
0
votes
0answers
15 views
ActiveAdmin password reset routing error
I'm using ActiveAdmin 0.6.0 with Rails 3.2.13, and password resets for admin users are working and generating emails, but they're redirecting to "/session/new.admin_user" which doesn't exist. I see ...
3
votes
0answers
75 views
NameError (undefined local variable or method `devise_parameter_sanitizer'
I'm using devise for user authentication. However, when a user tries to create an account I am getting this error:
NameError (undefined local variable or method `devise_parameter_sanitizer'
This ...
0
votes
2answers
22 views
Closing Flash Notice Causes page to redirect
I am following the tutorial for devise and cancan integration for rails.
https://github.com/RailsApps/rails3-bootstrap-devise-cancan
I notice when a user logs in the flash notice causes the page to ...
0
votes
0answers
18 views
Subdomain routing with devise not working on heroku
I have defined a few types of users using devise (members, company_users, etc) and I'd like to use different subdomains for the login pages of each type of user.
I've referred to this railscast in ...
0
votes
1answer
27 views
ActiveAdmin - Edit Devise user without changing password
I try to do that. Unfortunately I have problems with overriding update and I don't know how to do that correctly. The way I do that in another place is:
if params[:user][:password].blank?
...
0
votes
0answers
31 views
Client-side authentication with emberjs and device in Rails4
Working with user resources is an essential part of every application an so there it's a task which should be automated as much as possible.
As for Ember I found a tutorial ...
0
votes
1answer
25 views
configure an existing controller to display devise notifications: undefined local variable or method `resource'
I have created a Rails 3 app with devise and i also have a controller called 'account' . When an user signs in with devise's sign in view , he's redirected to a view of account controller. So the ...
1
vote
2answers
71 views
+50
Any Alternate method for Class Casting
Following statement is not executing on some devices.
AddEvent act1 = (AddEvent) getLocalActivityManager().getCurrentActivity();
Is there any alternate method for above statement. On some devices ...
0
votes
0answers
21 views
How to test curl with Token Devise
I am trying to implement devise token authentication.
I have followed the following tutorial:
http://matteomelani.wordpress.com/2011/10/17/authentication-for-mobile-devices/
Fairly simple to my ...
0
votes
1answer
18 views
Rails Device and has_many association with promotions privilege
I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user,
for the users i used devise so:
when I delete a promotion, I would like that the users ...
0
votes
1answer
18 views
Check for email duplication in two different devise models. Maybe override controller methods?
I am having two different devise models. I am wondering, how can I make sure that both the tables dont have the same email? Any help in this direction is appreciated.
I was thinking maybe I could ...
0
votes
4answers
48 views
How can I use two Devise's before_filters in one rails controller?
If I have two roles in my application,one is admin,another is user,and now I want to give both of them the ability to visit controller actions , how should I do this?
class FooController < ...
0
votes
3answers
26 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 ...
-2
votes
1answer
21 views
Sending Devise emails to custom address
I'm using Litmus for testing emails, sent by my website, and I'm trying to write a script that will send all the invite/confirm/reset password emails to Litmus-generated addresses, plus to probably ...
1
vote
0answers
42 views
Rails sessions with redis, generating unnecessary session keys
I am having a problem where Redis is gaining a "appSession:*" key at a rate of almost 1 per second. There is no way I have this many users online, there are not even that many users in the database. ...
0
votes
1answer
36 views
Devise redirect after login or logout doesn't work with Rails page caching
I'm using Devise for authentication in my Rails app on Heroku.
I have redirects after login and logout setup the way it's suggested to do so in the Devise wiki. ...


