Tagged Questions
0
votes
0answers
20 views
No authorization exception thrown when accessing nested resources with devise & cancan
I use devise for authentication and cancan to handle authorization and I am trying to do something I think is simple: I want to make sure a book's author can only edit his books.
So, I have the ...
0
votes
2answers
23 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'
...
1
vote
1answer
44 views
Sanity check my Rails “Roles and Users” approach with Devise and Cancan
been kicking this one about for a while now, and would like to get someone who knows rails to test my theory (I'm new to Rails).
In my (simplified) scenario, I want to manage a list of Users, some of ...
0
votes
0answers
19 views
CanCan not performing authorization
I have used Devise gem for authentication process in my Rails app. That works fine. Then I tried to integrate Cancan for authorization for the roles. The roles are stored on an array in user.rb and ...
0
votes
1answer
43 views
Use Devise to prevent user set as 'false' (deactivated) on database from login
My Rails application uses Devise for authorization and sometimes the user that is trying to log in is disabled on database with a flag set as 'false'.
Is there a way Devise use this flag to prevent ...
1
vote
1answer
99 views
Authorizing non-logged-in user behavior in rails with cancan and devise
Post: hidden: boolean
I want the logged in user could see all the posts, and the non-logged-in user only have access to posts whose hidden fields are false.
So I write like this in cancan's Ability ...
3
votes
1answer
169 views
Rails - Determining group membership after authenticating against an OpenLDAP server
I am maintaining a Rails app that uses Devise LDAP for authentication. I am migrating away from Active Directory towards OpenLDAP, which I have set up with the same structure. OpenLdap was installed ...
0
votes
2answers
153 views
Using Devise with CanCan
This might be a bit of a noob question, but I'm asking anyway.
So I'm building an app where people make posts. So it's a social network.
But I don't want people to be able to edit and delete other's ...
0
votes
2answers
324 views
How to lock users using Devise?
I want to add a subscription type functionality in my application for the account holder users such that after a fixed interval of time they will not be able to access their account? Note: I dont want ...
0
votes
0answers
59 views
how can i restrict access for particular MountableEngine inside my rails application in routes
i want to grant access to /samurai (mountable engine) only for users that have admin as role:
how can i do that?
my routes
authenticate do
mount Resque::Server.new, :at => "/resque"
mount ...
0
votes
1answer
66 views
Authorization supported in Devise for Rails?
I've implemented Devise for a Rails 3.2.8 app. Very easy, seems to work fine. But the documentation suggests creating a whole separate table with email/passwords for an admin role. I need admins in ...
2
votes
0answers
135 views
Using devise/cancan in several rails application with central authentication [closed]
I need to have single-sign-on and central authentication for 3 of my customer projects(separated rails application under different subdomains). And also I need to manage authorizations with several ...
0
votes
0answers
89 views
Use multiple tokens per user-bounded resource for authorization, not authentication
In my application every User can have multiple resources (Dashboard) which it is able to manage. Every User must have the ability to share a Dashboard, using a token. External users can than use that ...
1
vote
1answer
229 views
Authorization on an association with CanCan,Devise and Rolify
I have the current database estructure in my application:
Publisher has_many videos, has_many users
Video belongs_to publisher
User belongs_to publisher
I want to be able to give ...
0
votes
2answers
650 views
CanCan - How to allow users to update and delete only their own objects
I've started a Rails application with Devise and CanCan. I have users which has a one-to-many relationship to articles. I'm new to CanCan, here's what I'm planning to do:
Admin
can do any action on ...
1
vote
1answer
176 views
Rails 3 + Devise + ? : User Creation with Confirmation by Admin
I've installed Devise and its up and working correctly. However, there's an extra step in the User registration that I'd like to add. Instead of the Confirmation email being sent only to the user, I ...
1
vote
1answer
391 views
Devise and cancan gems: has_many association
I use devise and cancan gems and have simple model association: user has_many subscriptions, subscription belongs_to :user. Have following SubscriptionsController:
class SubscriptionsController < ...
0
votes
2answers
257 views
Limit users to only access their profiles using Devise
I have currently set my app so that on successful sign in the app redirects the user to their profile at localhost:3000/users/id however if I am the first user id => 1 and type users/2 I have full ...
0
votes
0answers
34 views
Display a link if a users role == 'Something'?
I currently have devise managing my Authentications with the cancan gem handling my authorization.
At the moment. I have a page on my website in which can only be accessed by typing in /Users. I want ...
0
votes
0answers
167 views
Is devise's token authentication secure?
Because the token is stored in the user object, and therefore a single token is paired to at all times, is this really a secure way of authentication a user? I can't reset the token without signing ...
0
votes
1answer
43 views
Is there an elegant way to integrate code performing authentication on other php site into Devise?
I am developing Rails application, in which I need to authorize users from other site written on PHP.
The APIs of PHP site written by its developer are custom i.e. they are not OmniAuth or similar.
...
1
vote
2answers
1k views
Rails App: Links to Devise views route to the home page.
Iam using Devise + CanCan + Rolify in my app as the authorization and authentication solution.
The admin is doing all the user access management from their dashboard in my app. So Im trying to access ...
3
votes
1answer
3k views
Using Devise/Cancan/Rolify together
So I'm super new to RoR, but I'm trying to set up an authorization/authentication system, and I'm getting super confused/had a couple of questions
In a lot of tutorials, people set up a user/role ...
-1
votes
1answer
333 views
User Authentication and Authorization in Ruby on Rails
I need to create users with role Admin = 1 and Vendor = 2, for this i try to use Devise but facing many issues. Devise created user modal and table in Db with email, encrypted_password, role (role i ...
9
votes
1answer
2k views
Rails 3 & devise_ldap_authenticatable: Authorization against Active Directory?
Ok, after the weekend, I can answer my own question :-)
Answer to the original question (see below):
Change devise.rb to activate the attribute ldap_check_attributes - that's the essential one. ...
2
votes
0answers
254 views
Devise + STI + Authorization
I have the following situation:
My app has several types of users: Owner, Team Member, Collaborator, Client, and Guest. (the Guest type isn't relevant for this question)
These are the connections ...
1
vote
1answer
174 views
Rails Devise Legacy Users from CakePHP
I recently got Devise working. New users sign in, sign up, logout etc etc just fine. Old users however have an issue. I have gotten it to a point where I get a 401 unauthorized, which seems to me that ...
0
votes
1answer
117 views
In Rails, what's the best practice for authorizing a user's access to a model?
I'm using Devise for user authentication and basic authentication. Let's say I have defined two reciprocal associations between Users and Cars.
User has_many :cars
Car belongs_to :user
User A has ...
2
votes
1answer
803 views
testing custom devise and/or warden strategy with rspec
I see plenty that lead to custom authorization strategies for devise and warden, but what I'm sepcifically after is testing these solutions with rspec. Similar to this question: Filtering users who ...
1
vote
1answer
233 views
iPhone Web App - Doesn't Remember Login
Okay,
So I'm running a Rails 3.1 App, with iPhone Support - So I can basically save the web app to my home screen, and it'll have it's own icon + splash screen etc.
I am using Devise to handle ...
1
vote
1answer
283 views
creating a new multi tenant app which authorization and permissions system
I am writing a new authorization system and permission system for my multi tenant rails 3 app.
I need to have guests, basic users, site owners, site owners can have users, multi site owners with ...
1
vote
1answer
1k views
authorizing users with cancan and devise
I have a user model created with Devise that has an admin boolean field and a roles integer field. I am trying to create an ability class that allows a non admin user to have certain abilities based ...
0
votes
1answer
123 views
authorize my rails 3 applicationd
I'm developing a rails 3 application using inherited_resources and devise.
I tried to use cancan as my authorization plugin and it wasn't enough (i need more complex conditions for my authorization ...
0
votes
2answers
412 views
Using Devise to create private profiles
I am currently trying to create private user profiles using the Devise gem. So far I have the sign up, login, sign out and edit profile functionality working. The problem is that when a user signs ...
5
votes
1answer
4k views
Custom Devise 401 unauthorized response
I'm working on a JSON-based API for my Rails 3.1 app. I'd like to provide a custom failure response instead of the default, which is:
{"error":"You need to sign in or sign up before continuing."}
...
4
votes
1answer
4k views
Have CanCan use Active Admin user?
I'm using Devise and CanCan for authorization on the frontend of a Rails 3 app. I also have Active Admin as the interface for the backend. I'm trying to create different roles for admins in the ...
3
votes
2answers
2k views
rails3 devise - no route matches “/sessions/user”
it is the first time I am working with devise and I am a confused by the massive amount of files and configuration options.
Before installing devise, I used the nifty:authentication from ryan bates - ...
0
votes
1answer
2k views
Devise “current_user” method in CanCan ability results with “undefined method” error
I'm trying to use Devise authorisation with CanCan roles in my rails3+mongoid app.
Now I have to limit users access to edit the events, so only their author could do this. Author of the event is ...
3
votes
3answers
2k views
Devise/Rails - How to allow only admin to create account for others?
I am using devise as my authentication solution and now i am thinking about authorization. In my project I (the admin) is the only person authorized to create account for others.
I wonder if there is ...
1
vote
3answers
182 views
Rails authorization necessary for post actions?
I have an app I'm writing in rails 3 w/ cancan and devise. I'm curious if authorizing post actions on your controllers is necessary or helpful from a security standpoint? Assuming all my controller ...
6
votes
1answer
4k views
Devise action filter for actions that require authentication
I'm using devise for authentication, however I cant see and action filter for specifying actions that require the user to login, is this included in the devise gem? if not how could I create one, I ...
3
votes
2answers
2k views
CanCan error 'undefined method role?' with Devise
Hey I hope you can help me:
I was going through this tutorial
http://www.tonyamoyal.com/2010/07/28/rails-authentication-with-devise-and-cancan-customizing-devise-controllers/ and I did every step by ...
1
vote
1answer
238 views
User specific “resources” with devise and Rails?
user has many diary_entries
diary_entries are private to user, so that user can create/edit/see only his own diary_entries.
I haven't implemented this pattern before and trying to figure out how to ...
1
vote
1answer
604 views
How to show a login modal in Rails if a user tries to access an authorized section
How would you implement a modal window saying "In order you to access this area you have to be logged in.." in combination with a login form below it every time a user tries to access authorized ...
0
votes
1answer
294 views
Devise and swfupload authorization
i'm trying to verify in my controller whether user has sufficient rights to upload files or not. swfupload does a POST request with (according to documentation) cookie values passed directly in POST ...
0
votes
1answer
412 views
acl9 and devise don't seem to work well together
I have a user model whose access controlled by ACL9.
in UsersController:
#ACL9 related stuff
before_filter :load_user, :only => [:show]
access_control do
allow :owner, :of => :user, :to ...

