Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.
0
votes
1answer
26 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
45 views
Change devise params from user[email] & user[password] to email and password
I'm creating an API and was wondering if it is possible with the devise gem and with Rails in general, to change the the params such that user[email] changes to email and user[password] changes to ...
0
votes
2answers
412 views
Rails 4/Devise/MongoDB: “Unpermitted parameters” using custom properties and strong parameters
Trying to add a nested custom attribute, Profile (a Mongoid document), to my devise User class. When the Devise registration form is submitted, it should create both a User and a corresponding Profile ...
0
votes
2answers
33 views
Adding only devise :confirmable to a Model
I need to add a confirmation email functionality to a model in a Rails Application, but nothing else. It is not a User model, it is not authenticable.
I added devise :confirmable to the Model, and ...
1
vote
1answer
45 views
one month rails user specific routes and pin controller
I want to alter the path generated by my pins to accommodate an admin user to access another users pins and be able to delete them.
I have created a user model with devise and added the admin ...
0
votes
0answers
14 views
Multiple, simultaneous, scoped, logins with authlogic
The app that I'm working on allows people to use the product with anonymous accounts. Some users also need to be admins though and if I reuse their anonymous accounts then it becomes very easy to ...
2
votes
1answer
46 views
Why does devise not hash reset_password_token and confirmation_token?
I figured out that the devise authentication framework for Rails does not hash the reset_password_token and the confirmation_token in the database? Does anyone know why?
Obviously it is a bad ...
1
vote
2answers
85 views
Unable to over-write devise routes
I am using devise and I want to customize its urls:
users/sign_in --> account/login
users/sign_up --> account/register
users/edit --> account/profile
...
Now my routes.rb looks like ...
1
vote
1answer
47 views
How to render devise/registration/new.html.erb files?
I am facing this problem. I want to render registration and sessions new.htm.erb files in my layout/application. I have tried to create partial for both registration and sessions new.html.erb.
I have ...
0
votes
2answers
36 views
Devise broke by itself? /users/edit goes to 404
When clicking on the User Profile link edit_user_registration_path (http://localhost:3000/users/edit) which used to work yesterday. Today goes to a 404 error that looks like this.
Routing Error
...
0
votes
1answer
100 views
AJAX for rendering a partial or showing form errors
I am having difficulties in solving a form processing in an AJAX way with Rails. I am going to try to explain the different parts I have, and where I do have doubts:
Here is how my new.html.erb ...
1
vote
2answers
38 views
How to secure user show page alongside user admin functions when using devise
I'm using devise and have let admins manage users with a Manage::UsersController.
This is locked down using cancan:
# models/ability.rb
def initialize(user)
if user admin?
can :manage, ...
0
votes
1answer
24 views
Mantain a “position” in a line of users who signed up in a Rails app
I am using Rails and Devise and I would like to do the following:
When a User goes to the Landing page, tell him how many people he has "ahead" of him (that is people who has already signed up for ...
0
votes
0answers
18 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
84 views
Rails backend: Devise + Cancan + Helios
I've been developing a mobile app that needs to sync with a remote backend. Recently it has been released Helios.io, an open-source mobile backend framework developed by Mattt Thompson. I want to use ...
0
votes
0answers
18 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
0answers
25 views
RAILS restful input security using Devise
I have restful input working with a RAILS app.
The following works fine:
http://my.url/types?type[typecode]=test&type[typedesc]=test%20description
But, if I add the gem Devise and put this ...
1
vote
1answer
13 views
Nested resources with devise
This is my routes file.
devise_for :users, :path => 'accounts'
resources :users do
resources :articles
end
How can i show all articles of
the users on the main page?
0
votes
0answers
24 views
How can I turn off specific action for devise
My Env
ruby 2.0.0-p0
Rails 4.0.0.beta1
devise (2.2.3 d29b744)
Is it possible to turn off a specific action for devise route?
I want to sign_up and sign_in form in one page.
Then I want to use only ...
0
votes
2answers
30 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 ...
1
vote
0answers
52 views
ActiveAdmin with Devise, does not return the authentication_token when login
I have an ActiveAdmin app that uses the User model (instead of the default AdminUser one). User has a role (blank or admin)
app/model/user.rb:
class User < ActiveRecord::Base
devise ...
0
votes
1answer
46 views
Email said to be null is not with Rails 3.2 and Devise
Using Rails 3.2 and Devise, I have overridden the Registrations Controller with a custom one. I did not change the code in the create method at all, it is the original one in Devise.
But strangely ...
3
votes
1answer
44 views
Rails user 'unseen pages' counter
I have a simple rails app using devise for authentication. I'm interested in creating a counter for each user that updates when they visit certain pages.
For example:
User counter = 4
User visits ...
2
votes
2answers
54 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
0answers
10 views
Rails 3 + Devise secret_token error
I've just followed the instructions from RailsCasts#209 but I' ve got the following error-message:
ArgumentError
A secret is required to generate an integrity hash for cookie session
...
0
votes
0answers
44 views
Log out button links to the wrong url
I have a rails app that I only use as rails_admin to manage files used by a flash application. My routes.rb file can be summarized as follows:
MyApp::Application.routes.draw do
devise_for :users
...
0
votes
1answer
41 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 ...
0
votes
1answer
43 views
RoR Active Admin adding Users
This might be a very simple questions as I am just getting started with RoR and been doing as much learning through resources as possible. Basically I am using Active Admin to handle the admin portion ...
3
votes
0answers
206 views
Shared authentication between rails and node.js with redis store
I have a rails app and a node.js app and I use Devise to authenticate users. I store the session with Redis. Now I'd like that when a user go to the node app, the app checks through socket.io whether ...
1
vote
1answer
45 views
How to make ldap work with devise in rails?
I am using devise and i try to use ldap and all my attempts resulted in failure.
I have followed http://vimeo.com/13105005
and I am really looking for help.
Started POST "/users/sign_in" for ...
1
vote
1answer
49 views
Devise Async + Sidekiq + sendmail timeout
I'm getting timeouts with using Sidekiq::Extensions::DelayedMailer.
Does anyone know how to change the timeout time to be longer so that Sidekiq can send messages successfully?
Here is my logdump:
...
0
votes
1answer
37 views
Rails app. Multiple forms in devise view
Currently the view/devise/registration/edit has one form for changing password. I want it to have multiple forms, like one for changing password, one to change name of the user... etc.
I tried to ...
0
votes
1answer
34 views
Syntax Error while implementing devise with my ruby on rails appication
I am trying to implement devise in my rails application and I am getting this Syntax error in my header.html.erb
<% if user_signed_in? %>
Logged in as <strong><%= ...
1
vote
1answer
63 views
Devise + client_side_validations using Rails 3.2.1
I posted a recent question asking for help on how to get the client_side_validations gem to work with Devise. I received a prompt response from the author of the gem, to try a different version of the ...
0
votes
1answer
89 views
google oauth fails with 401 unauthorized in rails omniauth
I am trying to authenticate with google oauth2 using devise and omniauth. I set up the call backs religiously as specified in omniauth documentation and am even using the same exact code. ...
0
votes
1answer
39 views
The action 'google_oauth2' could not be found for Users::OmniauthCallbacksController
I'm using 'omniauth-google-oauth2' for sign in with google and follow all instruction here carefully
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview
but i have error above.
my ...
0
votes
1answer
50 views
Devise Logout being intercepted
I'm testing my website using Devise, and what I've found is if I intercept the redirect after a Devise Sign Out, while the "destroy" method is being called, I can still use the back button and log ...
0
votes
0answers
50 views
How to test guest user in devise rails gem?
I want to use Devise in my App and i need guest user. I try to use this example -
https://github.com/plataformatec/devise/wiki/How-To:-Create-a-guest-user
Now, i want write some rspec tests for user ...
0
votes
2answers
36 views
RuntimeError - No input found for binary
So I have a Ruby on Rails setup with Devise and Paperclip. I managed to convert my erb files to HAML and still having issues when I try to put an attachment input on the New registration view. I took ...
0
votes
1answer
26 views
The action 'google' not found for Users::OmniauthCallbacksController
i'm using omniauth-google for login with gmail. It is give me an error action "google" couldn't be found. while i have define it in "Users::OmniauthCallbacksController" like below.
def google
...
1
vote
0answers
37 views
Rails Devise: detecting login method of the FB / Linkedin / local user
I'm using Devise with Omniauth gems for Facebook and Linkedin logins. My app allows users to login with FB / Linkedin and local credentials. Is there any good way of detecting how the current user ...
0
votes
1answer
41 views
Polymorphic user model when using devise
I am building a job board and therefore have two user models and employer and an applicant.
I am using devise and therefore my challenge now is to use this with the polymorphic relationship.
Through ...
0
votes
0answers
20 views
how to set email_required = false on signup with omniauth-twitter
In a Rails 3.2 app I'm using Devise on a User model, with omniauth-twitter. A User has many Authentications.
Login is via email + password, or via Twitter.
I'm trying to modify the email_required ...
0
votes
1answer
26 views
Syntax Error while implementing Devise
I am trying to implement devise in my rails app, and getting a Syntax Error in my _header.html.erb partial:
<header class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div ...
0
votes
3answers
50 views
restricting users to create new article in blog gives “ undefined method `is_admin?' for nil:NilClass” in ruby on rails app
I am implementing blog app in ruby on rails where I want to restrict normal user( only admin can create) from creating new articles. For this purpose, I have put befor_filter in articles_controller.rb ...
0
votes
1answer
35 views
Ruby Allowing a user to create a post, which only allows other certain selected users to edit certain parts
Im new to ruby but trying to create a project, after doing some research i found to use Devise, cancan and role models, however im not having much luck and would really appreciate some assistance or ...
0
votes
2answers
85 views
Modify Devise to support UUID primary key
I want to modify Devise to make it work with a users table with a UUID primary key with PostgreSQL.
Here is the migration:
class DeviseCreateUsers < ActiveRecord::Migration
def change
...
0
votes
3answers
62 views
return redirect_to in private controller method
Preface: I'm using devise for authentication.
I'm trying to catch unauthorized users from being able to see, edit, or update another user's information. My biggest concern is a user modifying the ...
1
vote
1answer
545 views
How to hide bottom bar(displaying 3 menu option) in android 4.0 using tablet
I want to hide the bottom bar of my testing device for my whole application permanently.
I checked a lot of portals and sites but don't get the require result. so please help me.
3
votes
3answers
111 views
Why shouldn't rails noobs use Gem Devise? [closed]
I am a ruby on rails noob. In contrast I am fairly good in my HTML CSS javascript and jQuery. Recently I got into ruby on rails using this tutorial by Michael Hartl: ...




