The CanCan gem offers a straight forward and flexible way to define what a user can and cannot do. CanCan uses a model to define the abilities of a user. Inside the class you declare what a user can and cannot do by using the “can” method. From your controllers you use the "can?" method to test the ...
5
votes
3answers
2k views
How do I create an rspec test that validates a JSON response?
I have a Groups Controller with a method def inbox.
If the user is a group member then inbox returns a JSON object.
if the user is not a member, then inbox should redirect thanks to CanCan ...
4
votes
1answer
391 views
CanCan difference between :read and [:index, :show]?
According to all documentation, the :read action is aliased to both :index and :show:
alias_action :index, show, :to => :read
However, consider the following scenario with nested resources:
...
4
votes
1answer
2k views
Rspec, CanCan and Devise
I am starting a project and i would like to be able to test everything :)
And i have some problems with CanCan and devise.
For exemple, I have a controller Contacts. Everybody can view and everybody ...
4
votes
1answer
1k views
Rails cancan authorizing nested resources
I have Projects resource which is nested in Users resource.
My Cancan Ability class is:
class Ability
include CanCan::Ability
def initialize(user)
#everyone
can :read, Project
if ...
3
votes
1answer
229 views
Rails 3 ActiveAdmin CanCan. How to setup that User should only see records that belong to him?
I setup admin_users that belongs to a customer class (Customer is a company). So Customer has many admin_users.
I'm trying to restrict access to Shipment records that belongs to a certain customer. I ...
3
votes
1answer
164 views
Context aware authorization using CanCan
I want to use CanCan to handle my permissions. My site has many different permissions levels, and most of them are context aware. For instance, Here are the relations in my 3 main models:
class User ...
3
votes
1answer
199 views
How to ignore rescue_from in ApplicationController in rspec tests?
By default, Cucumber ignores rescue_from in your ApplicationController and reports any exceptions directly. This is accomplished by the following line in the Cucumber env.rb file
# in ...
3
votes
2answers
172 views
Java authorization library like “CanCan” for Ruby on Rails
Everyone I was wondering if anyone knows of any Java libraries that are similar to or offer the same functionality as CanCan (Ruby on Rails). Would love to know your experiences with them if any.
...
3
votes
2answers
119 views
Restricting admin from destroying own account using cancan
Here is a snippet of my code from my ability class
if user.admin?
can :manage, :all
can :destroy, :all if != current_user
I am sure that you can figure out what I am trying to do here. ...
3
votes
2answers
502 views
CanCan: limiting a user's ability to set certain model attributes based on their role
I have a Post model with a :published attribute (boolean) and a User model with a role attribute (string). There are three roles: ROLES = %w[admin publisher author]
I don't want users whose role is ...
3
votes
1answer
470 views
undefined method `find' for Admin:Class — CanCan
Has anyone seen this error:
undefined method `find' for Admin:Class
When using Devise and CanCan?
I'm unable to isolate where this is erroring: The logs are showing nothing useful:
Started GET ...
3
votes
3answers
868 views
Setting CanCan ability.rs model
I successfully made login system with Devise and CanCan, and I have 3 types of users. Admin, internal and global users. I created Controllers and index actions: Admin, Cpanel, Report and State, and I ...
3
votes
4answers
572 views
Safest and Railsiest way in CanCan to do Guest, User, Admin permissions
I'm relatively new to rails (3), and am building an application, using CanCan, where there are 3 tiers of users.
Guest - unregistered visitor User
registered and logged in visitor
Admin - registered ...
3
votes
3answers
2k views
How to create the first (Admin) user (CanCan and Devise)?
I made authentication in my Rails 3 app fallowed by Tony's tutorial
I don't want public registrations on my app, just to create new users with Admin account, but I can't create Admin account ...
3
votes
2answers
2k views
Testing views that use CanCan and Devise with RSpec
I was trying to test a simple index view, which has following code inside:
- if can? :destroy, MyModel
%th Options
MyModelsController has following options (Inherited Resources + CanCan + ...
3
votes
3answers
1k views
How can I redirect a user's home (root) path based on their role using Devise?
I'm working on a project management app, and in the app, I have project_managers and clients. I'm using Devise and CanCan for authentication/authorization.
At what point after login should I be ...
3
votes
2answers
544 views
CanCan - Access denied - Way to make CanCan Specify in the LOG Why?
I'm working to implement CanCan. For some reason CanCan keeps giving me Access Denied when I try to get specific about model permissions. And I can't figure out why.
Is there a way to get CanCan to ...
3
votes
1answer
1k views
Integrate Mongoid and CanCan
Have somebody tried to rewrite CanCan ActiverRecordAddtions for
Mongoid http://github.com/ryanb/cancan/blob/master/lib/cancan/active_record_additions.rb
Regards,
Alexey Zakharov
3
votes
1answer
1k views
What is current_ability in cancan's accessible_by (fetching records)?
In the documentation of cancan it shows how to fetch all accessible records (in http://wiki.github.com/ryanb/cancan/fetching-records) in this way:
@articles = Article.accessible_by(current_ability)
...
2
votes
2answers
53 views
Rails 3 NoMethod Error - undefined method for profile in Profiles#edit with CanCan
In my Rails 3 app, I'm getting redirected to login during my signup process. The steps to signup are supposed to be:
User creates User and Profile
Upon saving user, user is logged into the app and ...
2
votes
1answer
36 views
Rails Authorization on Web Services
My rails app is pretty much a front-end to several web services. I persist my User model, and that's about it. I need to add authorization to my web app, using Devise for authentication. I've ...
2
votes
1answer
190 views
Rails 3 ActiveAdmin. How to disable the Dashboard for users with a non-admin role?
This is how I can see user's role: current_admin_user.role
I'm using CanCan
How can I
Hide the Dashboard button
Restrict access to the Dashboard in case the user finds out it's url
-
I have ...
2
votes
0answers
81 views
Rails 3 ActiveAdmin. Hiding buttons according to CanCan permissions
I have ActiveAdmin and CanCan working together. I already set the administrator and customer permissions.
Now I want to hide the New, Edit and Delete buttons according to the permissions set by ...
2
votes
1answer
95 views
Devise & CanCan — Issues with CanCan 2.0 API
I'd like to have additional attributes for my User model and don't want to create a separate Profile model.
I'm trying to update custom fields with standart «update» from RESTful set of actions:
...
2
votes
2answers
232 views
Devise, cancan, and namespace routes
I have a namespace in my router like so:
namespace :my do
resources :addressbookitems
end
and in controllers/my/addressbookitems_controller.rb I have, for example, actions index and show.
...
2
votes
1answer
40 views
cancan ability definition syntax - is there a shorter version?
I currently have something like this in ability.rb:
if user.role? == "staff"
can :update, Interp do |item|
item.try(:user) == user
end
can :update, Invitation do |item|
...
2
votes
1answer
91 views
cancan with one role per user - any way to set up abilities without repeating so much text?
My ability model looks something like this:
class Ability
include CanCan::Ability
def initialize(user)
if user.role == "moderator"
can :manage, [Forum, Post]
...
2
votes
1answer
153 views
Understanding Cancan abilities
Trying to get Cancan securing a few models in an application and curious why it's not working the way I thought it would. I had thought you could can? on the specific instance as opposed to the entire ...
2
votes
1answer
193 views
RoutingError resulting from 'redirect_to root_url' not passing action
With a standard install of Rails_Admin using Devise for authentication and CanCan for authorization, accessing http://localhost:3000/admin as a non-admin user produces the following server log:
...
2
votes
2answers
373 views
Rails 3 advice: Create new Admin User class or use CanCan?
I've got a rails 3 app in beta right now that uses Devise for authentication for users, and need some advice. I want to add an admin-user that has some additional abilities, but I will be the only ...
2
votes
4answers
539 views
CanCan Separate Role Model
I've been following this guide on the Separate Role Model implementation in CanCan. When a User, tries to sign up this error is thrown when creating the Assignment.
User(#21477600) expected, got ...
2
votes
3answers
75 views
How can I allow a user to only update reviews they have written using cancan?
I've been following through Ryan Bates' railscast on using cancan but am stumped as to why checking whether a user has written a review and then allowing them to edit it if they have, wont work for ...
2
votes
0answers
468 views
Rails 3.0.7 + cancan + inherited_resources + non-RESTful action = autoload fail!
I'm using cancan 1.6.5, inherited_resources 1.2.2, and Rails 3.0.7, having recently upgraded from cancan 1.2 and inherited_resources 1.2.1.
After the upgrade, I'm getting a lot of failing tests ...
2
votes
3answers
223 views
why is my CanCan Ability class overly permissive?
I'm (finally) wiring CanCan / Ability into my app, and I've started by writing the RSpec tests. But they're failing — my Abilities appear to be overly permissive, and I don't understand why.
...
2
votes
1answer
159 views
How can I test CanCan in the console?
I need to check :read? on an object in the console, how can I do this?
2
votes
3answers
2k views
How to do integration testing with RSpec and Devise/CanCan?
If I have a Devise model User, of which only those users with role :admin are allowed to view a certain url, how can I write an RSpec integration test to check that the status returns 200 for that ...
2
votes
2answers
319 views
devise/cancan demo account
I'm using devise/cancan for my app and everything is pretty sound -- provided a user creates an account and signs in.
What I'd like to do is allow a user to get started without creating an account. ...
2
votes
1answer
199 views
Authorise action with CanCan through model relationship
I'm using CanCan and Devise for the auth processes in an app and everything is working perfectly.
However, we have a setup in which users can create lists of items.
The List model has a user_id ...
2
votes
1answer
103 views
How to access 'can?' method from within cell?
I'm using cancan and cells gems in my ruby-on-rails project.
How to access can? method from within cell?
Thanks.
2
votes
1answer
359 views
CanCan Nested Resource Controller Authorization
In my application, a user is allowed to assign another user as their "account manager" and the account manager would be allowed to modify all user info. I defined the following ability:
can :manage, ...
2
votes
2answers
763 views
Allow anonymous/guest user to “try out” functionality without registering in Rails/Devise/CanCan app
I'm developing a Rails 3 app using Devise and CanCan.
The app allows anonymous (not registered) users to access some of the app, and registered users to access other parts.
One aspect of the app (a ...
2
votes
1answer
554 views
Cancan authorization in Non RESTful controller
I have a controller like this, but no model class backing it.
class UserInviteController < ApplicationController
def process_email
authorize! :process_email, :abc
...
...
2
votes
1answer
155 views
CanCan: 'can' method fetch records again, even if they already fetched
I'm trying to pass an object like that
<% if( can? :change, comment.karma, comment.user_id)%>
#blah blah blah
<% end %>
and in my ability.rb i have the following:
...
2
votes
1answer
421 views
Different registration process with devise / cancan but only one User model?
I have being trying unsuccessfully so far to use devise to allow for 2 different path of registration to the same User model.
My user model is linked to other data model, but I don't care about that ...
2
votes
1answer
659 views
Admin Authorization w/ CanCan
A have a bunch of controllers w/ the Admin namespace. I want to restrict access to these unless the user is an admin. Is there a way to do this using CanCan without having to call unautorized! in ...
2
votes
2answers
805 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 ...
2
votes
2answers
4k views
Cannot test with rspec controller POST create action( devise and cancan)
I am having difficulty getting a rspec test for a controller to pass. I would like to test that the POST create action works. I am using rails (3.0.3), cancan (1.4.1), devise (1.1.5), rspec (2.3.0)
...
2
votes
3answers
677 views
Using cancan to prevent access to controller
I have an admin controller and I want that only users that are defined as admin would have access to that controller.
my ability class:
class Ability
include CanCan::Ability
def ...
2
votes
1answer
355 views
Can Cancan be used to restrict access to specific values for a single model?
I have a Rails 3 application that has Categories. A category can be administered by somebody with the Category Owner role. But the Category Owner should only be able to access Categories that he ...
2
votes
2answers
702 views
Best way to handle multitenancy in Rails 3
I'm building multi-tenant application.
All data isolation is done by TenantID column in each table.
What is the best way to automatically handle multi-tenancy for all tenant models.
Example:
...