Tagged Questions
The acl9 tag has no wiki summary.
3
votes
3answers
298 views
acl9 find just model object which satisfys object.accepts_role?(role_name, current_user)
I'm pretty new to rails and it's the first time I'm actually using authlogic + acl9. I followed the default installation steps for both plugins.
So far everything works great, but I have trouble to ...
1
vote
0answers
17 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 ...
1
vote
1answer
22 views
How to control field access with cancan
I have a Book model which has a cover field which is the path to an image that is uploaded.
But I want to restrict the uploading of the cover if a user is not a particular user level.
How do I do ...
1
vote
0answers
193 views
acl9 has_many through implementation
I got the following deprecation warning on the rails console:
DEPRECATION WARNING: Having additional attributes on the join table of a
has_and_belongs_to_many association is deprecated and will be ...
1
vote
1answer
381 views
ACL9 and Rails 2.3.8 - NameError: uninitialized constant User::Role
I am running RVM (Ruby 1.8.7-head, Rails 2.3.8) and have the BASICS of a new app running. I have Authlogic working, with the minimal code to make that work. I am attempting to use ACL9 (which I have ...
1
vote
1answer
282 views
Changing user roles through a form
I'm trying to create a Rails form that allows an admin user to change the assigned roles of other users. The form I've created registers changes to the user (such as password or login changes), but ...
0
votes
0answers
58 views
Acl9 allowing users to only edit own profile
I'm trying to set up an access control using acl9 (and authlogic).
Now i'd like users to be able to only edit their own profile.
The list of all users should only be accessed by an admin.
Here's my ...
0
votes
1answer
72 views
Rails configurable authorization per-role/crud action
I'm working with a Rails 2.3 app that is already using declarative_authorization to handle user permissions. Each user belongs to one group (no fancy roles) with permissions on certain models, mostly ...
0
votes
0answers
71 views
Object-level authorization database structure in Rails
I'm writing a rails application that has a need for very fine-grained authorization at the object level. Other systems use plugins such as acl9 or declarative_authorization however I want to implement ...
0
votes
1answer
123 views
Acl9 association table created_at column issue
I'm trying to figure out why the created_at column of roles_users' table seems to take the user one when assigning a role to a user. It should not have its own creation date? Any helps?
...
0
votes
1answer
401 views
Rails 3 and Acl9: find all subjects for a given object/role
I'm using rails3 with acl9 for authorization. I'm trying to grok ARel and the rails way of querying.
I have a User that belongs to a Company, and the user has a given role (acl9 provides the ...
0
votes
1answer
316 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 ...
0
votes
2answers
250 views
Show or hide fields depending on the Acl9 role - Ruby on Rails
I am using Acl9 to manage the roles and I want to hide the checkbox usertype if the user has the role :customer and show it if the role is :manager. I want that just the :manager can edit all the ...
0
votes
1answer
321 views
acl9: Determine authorization in advance
I am using acl9 on top of authlogic on one of my projects. I like the approach acl9's approach but I guess I am trying to do something that is just not that simple (not to say impossible).
For ...
0
votes
1answer
265 views
get a list of objects with roles applied in be9 acl9
I think in something like this:
def self.obj_list(opts = {:include => [] , :exclude => []})
# Returns an array with all objects with roles applied
# +:exclude+:: (array,string) optional ...
0
votes
1answer
389 views
Rails | Cucumber | acl9 | AccessDenied
I am ramping up Cucumber, and I am having a issue getting one of my first tests to pass. The exception I am getting is:
And I visit the new contract screen
Acl9::AccessDenied (Acl9::AccessDenied)
...
0
votes
0answers
108 views
acl9 roles deleted if no user
So for whatever reason this plugin will not maintain a role if there are no users added to it. A role whose last user is removed gets removed from the roles. Is there a workaround for this?
0
votes
0answers
363 views
issue with acl9 plugin
I am trying to allow users with role "corporate" to access their own company. Currently a user with that role gets blocked.
If i login as admin or change the access control to allow all, it works ...