0
votes
0answers
29 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
25 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
0answers
11 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
14 views

How to configure an existing controller to display devise notifications

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
19 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

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
0answers
4 views

Change roll while logged in (devise) using rolify

Looking for a solution: I have different views depending on the role someone is logged in. if current_user.has_role? :ta show something end if current_user.has_role? :xp show something different ...
1
vote
0answers
27 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. ...
2
votes
0answers
49 views

Authentication with AngularJs and Devise Rails, Do I need token system?

I am creating an application based on Rails and AngularJS. I would like to implement an authentication system by using gem Devise. I am wondering how to do it. I read some articles about attribute ...
1
vote
0answers
9 views

Rails 3 devise_for and STI

I have the following models: User Athlete < User Coach < User In my routes, I have the following: devise_for :users, :controllers => { :omniauth_callbacks => ...
2
votes
1answer
18 views

How to have single sign-in form for two devise models

I have two devise models. devise_for :contractors devise_for :customers To make it easier for the users and also cleaner on the frontend. I wish one sign in form in my navbar through both ...
-1
votes
0answers
22 views

Allow a user to create multiple accounts with Devise

I am using Devise for authentication. Suppose a user has setup their own account. Once they have set up their account, they need to be able to set up multiple accounts inside of this account, so that ...
0
votes
1answer
17 views

rails 3 returning to site user logged out

I've integrated dotPay to my Spree site for payments. The user after choosing this option is redirected from my site to dotPay's. He pays what is needed there and then he can click a button which will ...
0
votes
2answers
19 views

Display a custom sign_in form anywhere in the rails app but for 2 devise models signing through one form

I have two devise models and I wish to have a form in my nav bar where I have the email field, password and submit button. Something similar to what devise sign in already provides with. But the thing ...
0
votes
2answers
39 views

How to create relations among models for a rails app with devise and mongoid?

I'm trying to create a simple to-do list app here.. Is there any tutorial which can guide me to create relations among models? and what changes are nedded for the task controller.. Ruby - 1.9.3-p385 ...
0
votes
1answer
76 views

NoMethodError: undefined method `email' for nil:NilClass : can't send email with devise/sendgrid(Rails 3.2)

I am trying to use use actionmailer with sendgrid and devise on Rails 3.2. I browsed many questions on SO like replace smtp by sendmail, create a config/email.yml i don't have one) and many more ideas ...
0
votes
0answers
25 views

Devise should respond to format: :xml

When I try to use any devise related URL with format xml I get an 406 Not Acceptable as response. I did rails g devise:views and added the xml variants I needed, but that did not help. How can I ...
0
votes
1answer
45 views

devise not set flash messages when dealing with ajax request

When user wants to perform an action that need him to login in first, devise will redirect him to the signin page and set a flash message: 'Please signin or signup before continue'. This works well ...
0
votes
2answers
43 views

Show validation errors on another page in Rails

I have a webapplication in Rails 3, where i want users to be able to sign up on the frontpage. The frontpage is controlled by a PagesController and the sign up process is controlled ...
0
votes
0answers
41 views

Rails cancan user that have many users

I am trying to do a system that have users that have users. So far there is no problem. I create two roles, :employee and :boss, a boss can have many employee, and an employee have to have one boss. ...
0
votes
1answer
27 views

Logout users with custom devise gem in rails3

In admin section, I'm showing a list of currently logged in users. Now admin can select one or more user/users and destroy their session(logout them).Please help me ,i stuck here last 2 week. i also ...
0
votes
2answers
25 views

Rails Devise with regular authorization and API

On my project devise provides user registration/authentication for admin panel. I need to add API method which will sign_in user and return JSON with status + session cookie. routes.rb devise_for ...
1
vote
2answers
56 views

How to have two different signup pages in rails (using devise)

I am using devise and the registration form shows at /signup path but I want another page with same registration form but with different text at the top. I can see the signup page is in ...
-1
votes
0answers
29 views

Can I tailor devise gem to create a two-step sign up?

I’d like to customize the devise gem for Rails. My goal would be to have users sign up in two steps (as with the website fab.com): for the email field, and then for the passwords fields, and create ...
1
vote
0answers
45 views

How to associate multiple emails for a single user in rails Devise gem

I am developing an application which uses Deivse for user authentication. It performs all standard task that Devise handles(e.g: Email verification during user sign up).But a user may have multiple ...
0
votes
1answer
19 views

Restrict devise users to their own view/association

I am using devise for authentication and have an association between users (has_many :products) and products model (belongs_to :user). My routes file is resources :users do resources :products ...
0
votes
1answer
17 views

Do I need a controller for each role in Ruby on Rails 3?

My Ruby on Rails 3 application is using Devise and Cancan. Concerning the roles, I have admins, managers, users and guests. I have some Posts and I use the generated index function to get my Posts ...
0
votes
1answer
28 views

Devise Registration#update via JS in Rails

I'm trying to update the User model through Devise with AJAX and have Devise respond with the proper javascript file. I want to submit the form remotely to the registrations#update action, but this ...
0
votes
0answers
16 views

how can i redirect to specific link out of my app when devise before_filter :authenticate_user works

here is my categories controller code class CategoriesController < ApplicationController before_filter :authenticate_user! ,:except => :index def index #some code end ...
0
votes
3answers
41 views

Rails - updating a user returns `Couldn't find User with id=edit`

In views/users/index.html.erb I have: <% @users.each do |user| %> <% if user.teacher == current_user.teacher || current_user.role == "admin" %> <tr> <td><%= ...
0
votes
0answers
29 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 ...
0
votes
3answers
51 views

Rails - Couldn't find User with id=edit

I am using Rails 3 and Devise for authentication. When I try to update my current_user, an exception is thrown stating: Couldn't find User with id=edit app/controllers/users_controller.rb:49:in ...
0
votes
0answers
10 views

Invoking create method in Devise::ConfirmationsController

I am using Devise and would like to invoke ConfirmationsController#create as follow: %i Add another email = simple_form_for(@user, :url => confirmation_path(@user), :html => { :method => ...
1
vote
1answer
30 views

Using Omniauth on Rails, how do I change the URL?

Currently I have these two routes in my rake routes output: user_omniauth_authorize /users/auth/:provider(.:format) devise/omniauth_callbacks#passthru {:provider=>/facebook|twitter/} ...
10
votes
4answers
237 views

Is there a solution for Rails Gem Devise to allow a user to have multiple emails?

I'm looking for a solution to allow a user on my app to have more than 1 email. This should work similar to Facebook, LinkedIn and Quora. Where an account can have multiple emails, 1 as the primary. ...
1
vote
1answer
58 views

UserMailer with Devise

am using my custom mailer UserMailer to send emails. It works perfect in development, but in production i get error 500, that is when am trying to retrieve my password on forgetting. here is what is ...
0
votes
2answers
84 views

Reset password email is not sent by Devise

Rails 3.2.13, Ruby 1.9.3 My Devise controller is working fine sending emails, with one exception: sending the reset password instructions email. When I click on the "Forgot your password?" link, I ...
0
votes
1answer
17 views

Rails - Fields from user form detected but validation still fails

Here is the exception I am getting: ActiveRecord::RecordInvalid in UsersController#create Validation failed: Email can't be blank, Password can't be blank But, the parameters seem to be picked up ...
0
votes
2answers
36 views

rails with devise - able to access other accounts once logged in

I am using rails with devise for user authentication. I am able to create new user accounts and able to log in. However, once I login using an account, then I can login to other accounts also by just ...
0
votes
0answers
34 views

Rails app (using devise) with manual login called by android app with facebook login

I need to manually create a user having devise installed and working. I have found in this question the answer to do it: @user = User.new(:email => 'test@example.com', :password => 'password', ...
1
vote
0answers
23 views

Is it possibe to let a user keep being logged in when he's accesssing to sub domain www?

I implemented Devise in my App. It was working fine. But one thing I'm not satisfied with: When a user log into example.com first, then access to www.example.com, he is logged out. Is it possible to ...
1
vote
1answer
74 views

rails devise 401 unauthorized for a specific page

I'm having trouble discerning why my app is returning a 401 Unauthorized. Other actions in my Institutions controller are working just fine while not signed in. However, this and another page are ...
1
vote
2answers
32 views

Model/ActiveRecord not saving new data

I have confirmed that this method works. Basically it takes the email from controller and changes the email of the specific user. However it never actually saves the data. I pass a wrong email format ...
0
votes
2answers
61 views

Logout users with devise gem rails

In admin section, I'm showing a list of currently logged in users. Now admin can select one or more user/users and destroy their session(logout them). I'm not able to figure where to start ...
2
votes
2answers
34 views

How to upcase model names in localised Devise error messages?

I am using Devise in my Rails app and I wonder why it downcases all my model names in its error messages: Source code on Github Is there any way to override this? In German, for example, nouns start ...
0
votes
1answer
33 views

Mongoid + Devise Daily Signups

I have been using Mongoid in my latest project along with Devise. So far it is great. I would like to count the number of user signups per day grouped by created_at date. I know that in mongoDB it ...
0
votes
0answers
17 views

Include devise mailer in own gem

I am trying to add devise dependency in my gem. By adding gem.add_dependency "devise" and Include modules :database_authenticatable, :confirmable, :registerable, :recoverable, :rememberable, ...
0
votes
0answers
16 views

Devise: redirect when email is already_confirmed instead of showing a flash message

I have the following model: class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :confirmable, :recoverable #... The default behavior in devise when you ...
0
votes
2answers
29 views

Unable to sign_up using Devise and CanCan in Rails

I been working on my application in which I have a number of roles and also some users. However suddenly I can't sign-up anymore. Signing in works fine, but signing up always redirects me back to the ...
0
votes
1answer
38 views

how to do validation for extra field added in user model for devise

I have searched for this question but not found an answer. I am using devise for creating new user. When i am creating a new user i have some fields which are required. I have made entry of these ...

1 2 3 4 5 36