Tagged Questions
The rails-authorization tag has no wiki summary.
3
votes
2answers
73 views
Authorization in Rails 3.1 : CanCan, CanTango, declarative_authorization?
I have looked at declarative_authorization, CanCan, and CanTango. They all are good in adding authorization to the application but I was wondering how does one add authorization to specific instance ...
2
votes
2answers
114 views
Rails - Using twitter oAuth for logging in users
I use Twitter oAuth to allow users to signup for my site.
I have the user's access_token, access_secret from their signup stored.
When the user wants to return to the site and login to their account, ...
1
vote
2answers
221 views
Rails Authorization Plugin Error
I'm trying to get the permit method to work using the rails-authorization-plugin and authlogic, and I keep running into this error:
When I try:
class ApplicationController < ...
0
votes
1answer
182 views
Filtering Repeater items based on user status/role
I have a tricky requirement where I need to categorise documents attached to a product, available for download, based on the status of the user viewing the product. I.e. my site displays a list of ...
0
votes
2answers
1k views
Rails: Create Default root user through migration? Rake task?
I'm testing my app out on Heroku (which is f***ing amazing!) and I realized that I have no way of creating my root user.
I'm using Authlogic and rails_authorization_plugin.
Is there someway I can ...
0
votes
4answers
805 views
'column “id” does not exist' error while trying to associate a Role with a User using rails-authorization
I'm exploring Rails for the first time and trying to add some fairly straightforward role-based security to my test app. Some Googling seemed to indicate rails-authorization is the way to go for this. ...