Tagged Questions
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
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
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
1answer
38 views
Rails + Mongoid + Devise : Add a birthday field to the register form
I'm using Rails 3.2.11, mongoid 3.1.2 and devise 2.2.3 and I have an User model with a birtday Date field.
class User
include Mongoid::Document
field :birthday, type: Date
field :email, ...
0
votes
0answers
21 views
How to use Devise authorization in custom middleware
I have middleware for serving files from mongodb
#serve_gridfs_file.rb
class ServeGridfsFile
def initialize(app)
@app = app
end
def call(env)
if env["PATH_INFO"] =~ /^\/grid\/(.+)$/
...
0
votes
1answer
28 views
Rails: Save a record in DB based on params in sign up url
I'm using Rails 3, mongoid and devise.
Depending on what "plan" you choose to sign up with you get a different URL, for example: Plan 2 will get http://example.com/users/sign_up?account_level=2
...
4
votes
1answer
82 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
72 views
Devise Login Validation: Include Current URL in Validation
I was wondering if there is a way to include checking the current URL during login with devise.
Say that I have a user model with field :url, and that along with :email and :password, you also check ...
0
votes
1answer
66 views
Creating users (with no registration) using Devise
I want to be able to create users and save them to the database but Devise doesn't pass the request to the database, and doesn't return any error.
alice = User.new
alice.name = "Alice"
alice.save!
...
0
votes
0answers
60 views
RoR devise gem dont hold mongodb embeded session
Im using Rails 3.2.x with Devise 2.2.2 and Mongoid 3. I have a Store document that embeds many accounts, I've managed to create the store and the accounts, but after trying to sing in, the session's ...
3
votes
2answers
381 views
I am using rails cast omniauth and i get this error
I am using Mongodb as database in rails and i got error when using /auth/linkedin/callback
NoMethodError in AuthenticationsController#create undefined method []' for nil:NilClass Rails.root: ...
0
votes
1answer
52 views
How am I supposed to use Devise and Omniaauth in Database Mongodb?
I did look Ryan Bates episodes to use devise with omniauth. Problem is that I am able to sign up with linkdin. My code
In my user.rb
field :provider, :type => String
field :uid, :type ...
1
vote
0answers
221 views
validates_uniqueness_of not working with devise for creating a user
I'm able to create users with the same name and email, even though I'm asking those fields to be unique.
Looking at the database, the entry which would be a problem is getting deleted, and a new ...
0
votes
2answers
103 views
mongoid and devise gives unsual error
Mongoid with devise seems to be throwing up this error for me, where ever devise is being used.
undefined method `-' for nil:NilClass
this is the stack trace
moped (1.2.7) ...
0
votes
1answer
137 views
Nested attributes in mongodb confusion
I am using rails with database Mongodb.
I am using devise . Devise has model name user.The id of the user is in
:id => current_user.id
I want to make a model such that when data is save from the ...
0
votes
1answer
201 views
Making Multi-user Contact Manager with Rails, devise and MongoDB
I'm working on simple contact manager that supports multi-user. I'm using with Rails, Device, and MongoDB with MongoID.
With devise, I easily attached basic login functionality with devise, and used ...
0
votes
1answer
73 views
Rails 3: Strange devise redirect error
So, I got an interesting problem. I am attempting to override and redirect a devise sign_up and sign_in request to their appropriate profile pages but I am running into an error. The profiles and URL ...
0
votes
1answer
78 views
Devise 2.1 are salts off by default?
devised moved the encryptable module to a different gem. However, they state that Bcrypt already uses a salt by default. I'm a bit confused. Without adding :encryptable to my models, are they salted?
1
vote
1answer
112 views
Devise on STI with different authentication keys on different class
I have an STI model structure where super-class is User and sub-classes are Member and NonMember. I want to have only one Member and multiple NonMember for an email. For e.g. with email a@gmail.com ...
0
votes
1answer
197 views
Rails 3 - Devise User has_many privately nested objects
I got a real head scratcher here and I am in need of some direction. What do you do when you want a devise User to have nested objects of their own, not viewable nor accessible to other users? For ...
0
votes
0answers
130 views
Confirmation mail is not coming in devise authentication
I am using rails 3.2.5 and devise authentication
..I change in
config/environments/development.rb
# ActionMailer Config
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
...
0
votes
1answer
119 views
undefined method `load_routes!' using devise with mongoid in rails3
I have a rails app using MongoDB. For connection with MongoDB I use the mongoid gem and now I want to integrate devise for authentication purposes.
I'm using
gem 'mongoid-devise'
gem 'devise'
...
0
votes
1answer
218 views
CanCan, Devise and the “current_user”
I have a simple setup with Cancan and Devise.
I wanna show the edit button only to "Admins" and Users which owns the "location":
So in the show.html.erb I have
<% if can? :manage, location, ...
0
votes
1answer
112 views
how to save user preferences
I have an app, and now, I need to save user's preferences.
I've done the following:
class User
include Mongoid::Document
include Mongoid::Timestamps
embeds_one :setting
end
and
class ...
0
votes
1answer
333 views
Mongoid and Cancan role inheritance / Many roles per User
I am playing around with Mongoid (NoMySQL Database), DEVISE and CANACN
I have read the manual (https://github.com/ryanb/cancan/wiki/Role-Based-Authorization),
but I dont wanna use the ...
1
vote
1answer
943 views
ruby on rails + heroku + mongoid + devise = uninitialized constant User (NameError)
I'm getting an error when deploying my app to Heroku. After looking 3 days looking for a solution, it seams like a common error, but I did not find a solution yet. My application is running perfectly ...
0
votes
1answer
160 views
Embedded Forms with Rails, Mongoid, and Devise
I have a devise model that embeds many for two other models called has_skills and desires_skills. The attr-accessibles are in place but I still get a WARNING: Can't mass-assign protected attributes: ...
1
vote
1answer
247 views
Rails, Mongoid, and Devise nested Models
I am trying to Nest a class within Devise that will hold a user's skills and desired skills into an array but I can not seem to get my form objects to save into the array.
Class User
include ...
1
vote
1answer
427 views
how to add admin to Devise in Rails/Mongoid user class?
I have a class User in Rails using Mongoid and Devise. I can't seem to figure out how to add an Admin role. The How To on the platformtec (Devise) site wants me to run a standard Rails migration, but ...
2
votes
1answer
589 views
devise registration with nested attributes is not creating association
I have a User and Account models with has_one association and nested attributes.
My problem is that when signing up user via Devise, Account is not created and no error is generated in the log.
I am ...
1
vote
2answers
406 views
How to force login, after facebook connect?
I'm using Rails, Devise, and Omniauth, and I'm trying to login using facebook connect.
But after the facebook part, I'm being redirected to '/users/sign_in#=' in my application.
According to the log ...
0
votes
1answer
69 views
Storing users and admin users together in mongodb
I'm writing a ruby on rails application using mongoid and I'm wondering about the security implications of storing users and admin users in the same document. My current implementation is using ...
1
vote
1answer
153 views
Does Mongoid load the entire user object when the devise current_user variable is used?
I've embedded all the activities for a user and let's say most user has tens of thousands of activities associated with them. When checking the current_user in my controller code, does Mongoid load ...
0
votes
1answer
224 views
“Parent” and “Child” Users with Mongoid and Devise
First of all, Merry Christmas all! What I've been trying to do is real simple (in theory). I have a Devise authentication system that runs with Mongoid as it's ODM. What I want to do is associate ...
2
votes
1answer
309 views
Mongoid relations with devise
I have some rails application with MongoDB, Mongoid mapper and devise. Аuthorized user can create, edit, delete post(scaffold) and comment this posts. I take for comment model example of Ryan Bates ...
1
vote
3answers
472 views
Manual for new version devise 1.5 and omniauth 1.0.0 facebook with Mongoid
I am following the new manual for install new version omniauth 1.0.0 with new version devise in
https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
But this manual its for Mysql I ...
0
votes
1answer
89 views
confirmable module error in devise 1.4.9
I have upgrade to devise 1.4.9 and I have a problem
with :confirmable module.
After confirm user with email that send devise, I try login with the
user confirmed and I get the next message:
"You ...
2
votes
1answer
354 views
user_signed_in? is causing uninitialized constant error with Mongoid / Devise
I had some issues with a different ODM yesterday so I decided to take a look at Mongoid instead. The wiki tutorial was pretty thorough, so it seemed like it was worth a shot. I went through the wiki ...
1
vote
2answers
577 views
mongomapper rails 3 and devise
I am using mongomapper throughotu my rails 3 app but am using authlogic and active record for authentication and storing users.
I am now changing this to devise and mongomapper like the rest of my ...
0
votes
1answer
178 views
How I can create with multiple types of users, using a simple login with Devise?
I'm using Mongoid, Devise and Rails 3.1.
I have four models: Students, Teacher, Parents and School (the main account). All them will log in on system. But, I don't want create four ways to login. I ...
0
votes
1answer
396 views
Devise with Mongodb won't recognize authenticate_person?
I am having trouble creating an object called person in addition to the user object that's given in the project template from here ...
2
votes
2answers
537 views
Rails Sign Up Form not saving
I have having a problem saving the sign up form using Devise. I am using rails 3.1.1, ruby 1.9.2 and devise 1.4.8. Also, I am using mongoid 2.3.2.
user.rb
class User
include Mongoid::Document
# ...
0
votes
1answer
357 views
Add current_user Devise to Mongoid relations
Hi Guys I have a Relationships in Mongoid and I can not add current_user to this relation for get the user that create the deal. A relation with 3 model.
I have three models user.rb, house.rb and ...
4
votes
1answer
323 views
Mongoid::Errors::MixedRelations: Mongoid + Devise
Hi guys I have a Model User from Devise with that relations:
user.rb
# Relationships
references_many :houses, :dependent => :delete
Now I have a Model House created with scaffold:
house.rb
...
1
vote
2answers
427 views
NoMethodError in AuthenticationsController#create undefined method `RandomString' for String:Class
I follow this tutorial for install omniauth in devise+mongoid:
https://github.com/fertapric/rails3-mongoid-devise-omniauth/wiki/OmniAuth-Installation-Tutorial
I have devise 1.4.5 + omniauth 0.3.0 + ...
0
votes
2answers
212 views
Custom current_user devise + Mongoid
I have devise + a scaffold "house" created, and I want that a user only can edite your own house.
This is my houses_controller:
def authenticate_owner!
@house = house.find(params[:id])
if ...
2
votes
1answer
867 views
undefined method `new_confirmation_path' Confirmation Module Devise + MongoID
I am trying to work with Rails 3.1 + Devise Module :confirmable + MongoID with this template:
https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-devise-template.rb
...
0
votes
1answer
311 views
Mongoid + devise error Mongoid::Errors::InvalidCollection
I have download the template Rails 3 + Mongoid + Devise and installed.
I have create a scaffold Car for relation with User model of Devise. I have in my User model this code:
class User
include ...
0
votes
1answer
106 views
Sign up — Two models, One form
I'm working with Rails 3.1, Devise and Mongoid. Right now I have 3 models — User, Client < User and Developer < User. Is there a way to sign up as either client or a developer from one form ...
0
votes
2answers
125 views
Database and Authentication Design Question
I have a Rails 3.1 application. I'm planning to use Devise for auth and Mongoid for DB storage. So basically there will be two different types of users: Clients and Developers. Each of them has ...

