Tagged Questions
1
vote
0answers
45 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
1answer
17 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
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 ...
0
votes
3answers
31 views
How to test a controller with steps to use some action
In my system, I have a user that have one company that have multiple accounts.
User sign in system using Devise, and have a virtual attribute called selected_company that was setted in ...
1
vote
2answers
39 views
Controlling the Order of Execution in Rails Create Action
New to Ruby and programming in general. So far I've had no problems finding answers to any questions I've had, but can't find this one.
In my app the Teams controller new and create actions are ...
0
votes
0answers
25 views
Overriding SessionsControllers is not loggin in
I want to add OpenID authentication in my web. To do that I have follow several tutorials and used several plugins and gems and finally I manage to do something with devise_openid_authenticatable gem. ...
1
vote
4answers
116 views
Devise - Listing Users
in my rails app I need to list the users by username, the error I get is
NoMethodError in Posts#index
Showing C:/Users/Corey/Dev/statlog/app/views/posts/index.html.erb where line #12 raised:
...
1
vote
2answers
44 views
Devise - Trying to display the user who made a post
I'm creating this rails app,
In the app I have the functionality to make an account, then post a status.
I have made it so I can display the status on the screen, but how do i display the name of the ...
0
votes
0answers
120 views
Uninitialized Constant Devise Heroku Rails
I'm running my app fine on my local machine but when pushing to heroku it crashes throwing the following error (full logs below)-
app/app/controllers/users/invitations_controller.rb:1:in `<top ...
0
votes
0answers
79 views
Registrations Controller Devise no Password >Update User
I am using a special controller for my registrations to avoid using the password requirement of the devise controller in my app. Unfortunately, at the moment I am not able to update my user ...
0
votes
1answer
53 views
Edit Devise Controller - Add Obejct
I want to add an object (@attachment) to the new and edit actions in the controller for devise. Unfortunately I don't know how and where to do this. :|
Hoe you guys can help me out!
1
vote
1answer
61 views
Not able to use new model with devise
I have 2 models in my application ( Using rails 3.2.5)
1) User(From devise)
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, ...
0
votes
1answer
200 views
Devise Registration form on any page
I'm trying to allow users to sign up for the site on my home/landing page.
I've duplicated the devise registration form into my landing page view-
<%= form_for(resource, :as => resource_name, ...
1
vote
0answers
367 views
Overriding Devise Passwords Controller
I want to disable the
def create
self.resource = resource_class.send_reset_password_instructions(resource_params)
if successfully_sent?(resource)
respond_with({}, :location => ...
0
votes
0answers
77 views
Devise, undefined `resource_params' for a modify controller
I'm using Devise for my users. And I want to change the redirection after sending them a mail to change their password. So I have created a personal controller users/passwords_controller
class ...
6
votes
1answer
518 views
Devise Rspec registration controller test failing on update as if it was trying to confirm email address
I have the following route:
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks",
:registrations => ...
0
votes
1answer
154 views
Customized Devise sessions controller doesn't work as expected
I customized some of the Devise's controllers following offical instruction :
config/routes.rb has been modified with :
devise_for :admin_utilisateurs, :controllers => {:registrations => ...
2
votes
1answer
424 views
Rails: Calling a controller method from another controller -> NoMethodError
I am using the Devise gem and have the 2 controllers:
1: controllers/admin/mailings_controller.rb:
class Admin::MailingsController < ApplicationController
def self.send_emails
...
...
0
votes
1answer
97 views
Rails Devise Sign in and Sign Up redirect
I'm trying to get some changes I had a contractor make working on my local and I can't seem to get past this error, mainly because I am not air tight in my understanding of how this works hence the ...
1
vote
1answer
50 views
Rails devise successful route on sign in
I'm still not understanding how to route to a users profile page after successful sign in with devise. I've read the other questions, googled, and gone through the devise docs and I still can't get it ...
0
votes
1answer
150 views
rails devise creating a CRUD interface for user model
I have a user model which I created CRUD interface in admin namespace with some controller code and forms. The user model initially has username email password fields.
Then I setup devise to work ...
4
votes
1answer
189 views
Custom devise sessions controller is not redirecting on error (:recall => not happening)
I am overriding Device sessions controller... It works (I can log in with json), but I cannot get it to redirect to another action on error:
class Users::SessionsController < ...
1
vote
0answers
68 views
Defining own Devise controllers prevents Devise using custom views
I used config.scoped_views = true in initializers/devise.rb to make Devise use my own views rather than its default views for my two roles (Admin and Subscriber). This worked great, and I went ahead ...
0
votes
1answer
719 views
Routing Error Try running rake routes
I got 2 diferents message but whit the same error, Im using a devise for users... Here is my routes.rb
Estaciones::Application.routes.draw do
root :to => "static_pages#home"
match '/contact', ...
0
votes
1answer
244 views
How to reroute standard rest actions to devise controller?
I have been building devise into a small Rails app. It's a pretty standard setup but one wrinkle is that the default authentication rules need to be changed for this project. Non-idempotent ...
0
votes
1answer
419 views
How to override Devise controller routing to use my original users#create action?
I have devise set-up, and it works great when a new user is going through the registration process themselves but before implementing Devise, admin had the ability to create users and behavior related ...
0
votes
1answer
146 views
Rails: Devise + CanCan cannot see any views
Im using Devise/Cancan in my rails app.
I haven't overridden the default devise controller. I have generated the default devise views. Now Id like to link to all the default devise views from an ...
0
votes
1answer
324 views
Two forms for different controllers on same page in rails
UPDATE:
The problem below stems from having a before_filter which authenticates the user.
I have two forms on the same page, two different form_for's each with a different model. They are as ...
1
vote
1answer
960 views
How to override devise registrations controller
I am working on invitations per this railscast and I am using devise for authentication in my app. I would like to get this bit of code implemented:
def new
@user = User.new(:invitation_token ...
0
votes
1answer
139 views
Does Devise work only with STI models?
I'm having troubles in understanding how devise works when you try to customize its behaviour.
I have two different models to handle: Society and Collaborator, and the registration form has to be in ...
0
votes
1answer
201 views
devise overrule devise SessionController broke login
I have extended the devise controller for sessions. To add some extra functionality when a user logs in. Now upon login, IF no username or password are entered I get error :
SessionsController#create
...
0
votes
1answer
219 views
Checking submitted token against authenticity token in database with devise
I'm using a Chrome extension to send data to my Rails app (the staged_images controller). So I have a form that sends the data, along with an authentication token. Each user has a token which is ...
1
vote
1answer
403 views
Rails Devise user controller in subfolder
I am using omniauth and found devise using a subfolder for this(in official example) controllers/users/omniauth_callbacks_controller.rb. I need to create a User show page as well as other actions for ...
0
votes
3answers
607 views
Devise User Show Page Controller not working
I'm using rails 3.1.3 (I believe the latest version) and in my app I am using the gem Devise for user auth. In order to add a user show (profile) page, I added a Users_Controller.rb
class ...
4
votes
1answer
2k views
Rspec, Devise, Factory girl - how to sign in Factory user through Rspec controller test?
I have a Posts controller and I have just installed Devise to add some authentication quickly and easily. Before I installed Devise, I had created some tests for the 'new' action of my Posts ...
0
votes
1answer
762 views
Infamous AbstractController::ActionNotFound - Devise + Rails
So I have read how to solve this problem:
RSpec Test of Custom Devise Session Controller Fails with AbstractController::ActionNotFound
and
http://lostincode.net/blog/testing-devise-controllers
...
0
votes
3answers
127 views
Rails Devise parameter
Is there a way in devise that i can simply send in a url that contains a users password name or email and it registers the user or starts a new sessions, rather than actually logging in through the ...
2
votes
2answers
273 views
Devise Sign Up function
How do I make devise execute functions after sign up, sign in etc. I tried putting functions like this in my application controller.
class ApplicationController < ActionController::Base
private
...
3
votes
1answer
4k views
Rails devise Sessions Controller
In devise, many of the pages that teach how to accomplish certain things require editing a sessions controller. I set up devise using this ...
0
votes
2answers
446 views
Rails 3 AJAX: wrong constant name
I am trying to do Ajax login with Devise, as explained here: http://jessehowarth.com/2011/04/27/ajax-login-with-devise#comment-5 (see comment from jBeasley).
My controller is attempting to return
...
1
vote
3answers
2k views
ArgumentError, wrong number of arguments
I'm getting the error
ArgumentError in PagesController#home, wrong number of arguments (0 for 1)
but I don't know why. I have a Users model from Devise, and a Dplan model, where dplan belongs_to ...
0
votes
2answers
581 views
Rails: Adding params to a Devise registration form through radio buttons
To enable different roles for users, I added some roles to the User model…
# class AddRolesToUser < ActiveRecord::Migration
add_column :users, :host, :boolean, :default => false
...
0
votes
1answer
1k views
2 render templates (from devise) on one page (rails 3)
I've installed devise for my rails app, i can go to the sign in page or the sign up page. But I want them both on a welcome page...
So I've made a welcome_page_controller.rb with the following ...
17
votes
1answer
3k views
How can I get Factory Girl to NEVER hit the database if I am calling Factory.build in order to make my controller tests FAST?
I am on a quest to make my Rails tests faster. I only have 520 tests, but they take 62 seconds to run in bash, and 82 seconds to run in Rubymine.
As an example of a typical controller test, I was ...
1
vote
1answer
492 views
How do you pass devise authentication details to a rails controller action?
I have a controller action that is expected to be called by jquery. Here's the call:
$.ajax({
url: "/comments.json",
type: "POST",
dataType: "json",
data: {
...
2
votes
1answer
4k views
How do I customize the controller for registration in Devise?
I need to add some simple methods and actions when a new user registers through Devise.
I want to apply a notify method which will send an email to me.
I want to use acts_as_network to pass a ...
2
votes
2answers
80 views
Ruby on Rails revise instead of edit
I am still a bit new to RoR, and am using scaffolding to generate CRUD interfaces for data.
I am using devise for user authentication, and want to allow a user that owns a specific entry to edit or ...
2
votes
1answer
2k views
undefined method `devise_for' in rails action controller
I created a model user with rails generate devise user and then rake db:migrate and then rake routes. Once i did that i know get a error in my home index being a action controller exception. saying:
...
3
votes
1answer
688 views
Create, update and destroy actions in an UsersController that uses Devise for registration?
Should I implement the new, create, edit, update and destroy actions on a controller whose corresponding model uses Devise's :registerable module?
In other words, should I keep the CRUD interface ...
5
votes
1answer
3k views
How to create a profile after user registration with Rails3 & Devise
I'm doing a simple user with profile application. User registers and
are automatically logged in. Works fine so far. Now, I'd like to
create a profile after a successful registration and redirect the ...

