Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.
5
votes
3answers
533 views
rspec ignores skip_before_filter?
We are having a strange problem. In the application controller we have a before_filter set that requires authentication using devise and redirects if needed to the login page.
In our library ...
0
votes
1answer
37 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 ...
0
votes
3answers
180 views
Devise + CanCan in Ember.js
Is there a non-trivial example / tutorial that implements Devise + CanCan in an Ember.js + Ember-data + Rails app?
0
votes
0answers
9 views
Testing the controller having load_and_authorize_resource using RSpec
I have a controller like this,
class SitesController < ApplicationController
load_and_authorize_resource
def index
@search = Site.search(:include => :parser) do
...
1
vote
0answers
22 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
4answers
2k views
Devise - how to change setting so that email addresses don't need to be unique
I set up Devise to log in with a username instead of email address because a significant number of our users share the same email address with their spouse. It is a unique market that we serve. But ...
0
votes
0answers
22 views
Devise restrict access to a specific url/rack-app
I'm trying to restrict the access to the "/media/:url" path. I need to do this because of dragonfly (rack app). At the moment the path is accessible for everyone.
I've tried it with a constraint in ...
2
votes
2answers
52 views
How to populate devise user
I want to populate db with fake data, using faker and populator gems.
Using Devise generated a model User.
this is my rake file
namespace :db do
desc "Fill database with sample data"
task ...
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 ...
1
vote
2answers
737 views
set timeout for a token in rails
How do i set a timeout for a given authentication token? After the timeout, the token will be deleted and the user won't be able to use it on his requests.
I'm using rails 3 and devise.
3
votes
2answers
162 views
Migrating existing user details to new authentication system
Recently I have changed my authentication system to devise. I want to migrate my existing user data to this new system. Previous one was using SHA256 hash to save password. As I know this encryption ...
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'
...
0
votes
1answer
39 views
Rails Devise LDAP Error: NoMethodError in Devise::SessionsController#create
My team has setup my ruby on rails app to work with devise ldap. Whenever a user logs in for the first time, it creates a new entry in the Users model and works completely fine. But whenever a user ...
1
vote
1answer
50 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
1answer
541 views
Stringify Keys Error with Devise and Declarative Testing with RSpec in Rails 3.1
Having a really tough time getting Devise and Declarative to play nicely in RSpec testing.
https://github.com/stffn/declarative_authorization/issues/95
stringify_keys error after supplementing ...
39
votes
10answers
15k views
RoR Devise: Sign in with username OR email
What's the best way to enable users to log in with their email address OR their username? I am using warden + devise for authentication. I think it probably won't be too hard to do it but i guess i ...
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: ...
11
votes
2answers
6k views
Undefined local variable or method `unconfirmed_email' when registering users?
I just installed Devise in my app, configured the views and everything. However, when I click the sign up button I get this error:
NameError in Devise::RegistrationsController#create
undefined local ...
0
votes
1answer
20 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 ...
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 ...
1
vote
2answers
57 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
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
30 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| %>
<%= ...
2
votes
2answers
128 views
Sign in with Devise, Omniauth and SoundCloud
I'm trying to sign in my Rails application using Devise and Omniauth. I've already installed omniauth-soundcloud and omniauth gems. I've created an application in Soundcloud with:
name: sitename
url: ...
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 ...
4
votes
1answer
85 views
mongoid as_document error
I am using mongoid with devise invitable,
after assigning roles to user I found the following error
"**undefined method `as_document' for Array **" , any suggestions ?
invitable = ...
0
votes
1answer
38 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 ...
7
votes
3answers
4k views
Specify which controllers to exclude from before_filter
I'm using devise for authentication and have some before_filters in my application controller. Issue I'm seeing is that when I try to logout the before_filter intercepts that and keeps me on the view ...
0
votes
0answers
16 views
Stubbing Grape helper
I have Rails app with Grape API.
The interface is done with Backbone and Grape API provides it all data.
All it returns is user-specific stuff, so i need reference to currently logged in user.
...
0
votes
0answers
37 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 ...
1
vote
1answer
668 views
Why i can not get current_user while writing test case with Rspec and Capybara
I have to write integration test case for my one feature listing page and that feature index method has code like below
def index
@food_categories = current_user.food_categories
end
Now when i ...
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 ...
1
vote
0answers
64 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
20 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 ...
4
votes
2answers
2k views
How do I add Honey pot fields to my forms?
I've been reading about adding Honey pot fields to my forms for combating bots/spam. Only problem is theirs no guides or anything on where to start. Many sites say to make a field that is hidden that ...
0
votes
0answers
13 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
25 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
11 views
rails with devise Forgot your password? no send emails
Hello i use devise for authetication but forgot password don't work!
He says You will receive an email with instructions about how to reset your password in a few minutes but nothing arrive....
for ...
0
votes
3answers
99 views
wrong number of arg for devise emails
I havent experienced this before, but since moving my rails site to Heroku I have getting the following message whenever trying to trigger Devise to send an email
Started POST ...
0
votes
0answers
30 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
0answers
20 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 ...
2
votes
1answer
639 views
“Email can't be blank” Devise using username or email
I was following this how-to on How To: Allow users to sign in using their username or email address and did all the steps detailed there but when I try to register via the registrations/new.html.erb ...
10
votes
4answers
9k views
Adding additional field and validation to Devise view/model in Rails app
I generated the default devise views with:
rails generate devise:views
Then I added a username field to the views/devise/registrations/new.html.erb form.
Currently, only email and password ...
18
votes
5answers
5k views
Rails 3.0.9 + Devise + Cucumber + Capybara the infamous “No route matches /users/sign_out”
I am using devise 1.4.2 with rails 3.0.9, cucumber-rails 1.0.2, capybara 1.0.0. I got No route matches "/users/sign_out" error when I clicked logout. I added :method => :delete to link_to tag after ...
0
votes
1answer
17 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 ...



