Rolify is a very simple Roles library without any authorization enforcement supporting scope on resource object.

learn more… | top users | synonyms

0
votes
1answer
42 views

Rails Rolify how to test for multiple roles

I would like to test for multiple roles using rolify. I tried this and it didn't work: <% if current_user.has_role? [:technician, :admin] %> Thanks for the help! UPDATE1 I'm trying to test ...
2
votes
1answer
74 views

What is the purpose of Rolify?

Hi I'm using rolify and have just realized that I'm not actually taking advantage of it's full potential. At present I am doing things in my controller like re-routing users if current_user.has_role? ...
0
votes
1answer
25 views

How to return string of role names with rolify

I'm trying to return the name of all the roles a user has in the following format: 'rolename1','rolename2','rolename3' So that I can user the has_all_roles? method from rolify. I've tried ...
0
votes
3answers
81 views

How to allow only Admin (or some user) to edit the pages in Rails?

I have a scaffold Finances and I just realized that it can be edited by any logged in user by going to /finances/1/edit I have installed activ_admin gem but I don't think it is what I need. How to ...
0
votes
2answers
18 views

Rolify abilities returning false

I'm experiencing a strange issue using Rolify (click for tutorial I'm following) with Rails: The can method does not seem to work, therefore rendering user privileges unuseable. Below is my ability.rb ...
1
vote
0answers
27 views

Rails STI with devise and rolify error

I'm developing a Rails 3.2.13 app using Devise and Rolify, and I need to have 3 user types as follows: class User < ActiveRecord::Base rolify ... end class UserTypeOne < User .... end ...
0
votes
0answers
45 views

Testing CanCan abilities along with rolify in controllers?

I'm using CanCan to control access to resources in my project and Rolify to define roles. I have a Project model and a Project controller that uses load_and_authorize_resource to control the Project ...
1
vote
1answer
81 views

Can't access users in console while using Rolify

I am making a Rails app that uses the Rolify gem with Devise and CanCan. Running the rolify generators like this rails g rolify:role put the rolify method at the top of the Users model like so ...
0
votes
0answers
148 views

Rails - Adding ActiveAdmin to App Already Using Devise/CanCan/Rolify

I created my app using the RailsApps Composer tool (Stripe-Membership-Sass) and am currently in the process of adding ActiveAdmin to manage my models. I'm having trouble accessing the ActiveAdmin ...
2
votes
4answers
349 views

Rails:Could not find generator rolify

Edit! I set up the rolify gem and bundle my app: I added: gem "rolify" #to add roles like admin and member to the users to the gemfile and then ran bundle install when i try to run rails g ...
0
votes
0answers
47 views

Rolify mongoid remove_role

I use rolify with mongoid to persist roles for users. If I want to add a role to user I just do it by add_role(:role) but if I want to remove role, I try to remove_role(:role) that doesn't do ...
0
votes
1answer
61 views

How do I restrict the currently logged in user to only see products that belong to them?

If a user is logged in with a specific role - vendor - they should only see items that they have created in their store. They should not be able to see products from other vendors. So I am trying to ...
0
votes
1answer
34 views

How do I restrict a role from not seeing prices on Products?

I have a Product model, and if a user is either logged in as a guest role, or not logged in, I don't want them to be able to see the prices on the products in my app. I am using Devise, CanCan and ...
1
vote
1answer
123 views

Grant access to user with Cancan & Rolify with has_and_belongs_to_many relationship

I got Partenaires resources who had many Agences, and User who had many Agences. I want to restrict access for each Partenaire with Cancan & Rolify. The only hack i found to do it, is to ...
4
votes
4answers
388 views

Devise / Rolify / CanCan 2.0: Preventing users from changing a user's role

I am using Devise for authentication, Rolify for role management and CanCan 2.0 for authorization. I am trying to allow the :admin role to change a user's roles, but disallow all other users access. ...
2
votes
1answer
228 views

Adding Roles to Rails Composer, Devise, CanCan, Twitter Bootstrap

I am making an app that started with Rails Composer, Devise, CanCan, Twitter Bootstrap. I know how to set the users permissions using the ability model. How do I add more roles to attribute certain ...
1
vote
1answer
140 views

CanCan/Rolify: Read access for user on model is declined

I use CanCan and rolify to setup access rights for a Farm model. # ability.rb class Ability include CanCan::Ability def initialize(user) # Create guest user aka. anonymous (not logged-in) ...
0
votes
1answer
62 views

Assign admin on user and location create

I have a nested model form for user sign up, which creates a user and a location at the same time. I want the user who creates the location to be assigned the admin role automatically. I'm using ...
0
votes
1answer
102 views

CanCan accessibly_by returns different responses in spec and controller

I am trying to test the user authentication for the Farm model, in this case for the :user role which has read access to all farms when being logged-in (as the guest user aka. anonymous has too). # ...
0
votes
2answers
111 views

One rspec roles test fails, but almost identical tests succeeds

I just added the Rolify gem, and am running some rspec tests. 2 tests are as follows: describe "roles" do before(:each) do @user = FactoryGirl.create(:user) end it "should not ...
0
votes
1answer
296 views

Rolify with_all_roles not working if User model has resource defined

I want to get a list of say moderators from User model, it works in this case u = User.new(:name => "n", :surname => "s", :email => "a@m.c", :password => "x") u.add_role(:moderator) ...
0
votes
1answer
41 views

How do I check for minimum permissions and allow all parent roles permission in a DRY way?

Say I have 4 roles: user, agent, admin, superadmin. Where each role has subsequently more permissions on all objects in my app. I am using Rolify, CanCan & Devise. What I would like to do is, ...