The CanCan gem offers a straight forward and flexible way to define what a user can and cannot do.
-2
votes
1answer
21 views
Guest user permissions with Rails and CanCan
Do I need to define permissions for creating user for guest? I mean can he sign up with out this permissions?
0
votes
2answers
16 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'
...
0
votes
1answer
25 views
Cancan showing all transactions instead of only authorized
I'm using cancan and I have this in the UserTransactionsController
class UserTransactionsController < ApplicationController
load_and_authorize_resource
def index
@company = ...
0
votes
0answers
22 views
Issues with stripe not creating the token
I am following the RailsApps tutorial. http://railsapps.github.io/rails-stripe-membership-saas/
For some reason the registrations.js file is not creating the token after the credit card information ...
0
votes
2answers
20 views
Closing Flash Notice Causes page to redirect
I am following the tutorial for devise and cancan integration for rails.
https://github.com/RailsApps/rails3-bootstrap-devise-cancan
I notice when a user logs in the flash notice causes the page to ...
0
votes
0answers
17 views
Issue with CanCan ability and block
I have problem with cancan. I add role in ability.rb
if user
can :manage, Account do
(some code which return boolean value). For example: user.verify?
end
end
and on my view for button I add ...
0
votes
0answers
6 views
Why my cancan didn't work properly?
my envirenment:ruby:2.0.0p0, rails:3.2.13, cancan: 1.6.10, devise: 2.2.4
Hi, when i following the cancan's wiki Separate-Role-Model, and it seems didn't work for me?
when i Debugging-Abilities, i find ...
0
votes
0answers
24 views
cancan authorization not working
I am trying to let only users who create a design can edit their designs but it doesn't work because the design.user in this block is always nil i think this has to do with the way my model ...
0
votes
1answer
46 views
User only upload own image to profile
I am having trouble implementing the gems cancan, with devise and carrierwave onboard rails 3.2.
Currently, I want users to be only able to upload images to their own user page (show). At the moment ...
0
votes
0answers
14 views
Double Nested Belongs To Cancan Authorization
I have 4 models, one belonging_to/has_many of the other:
class School < ActiveRecord::Base
has_many :courses
end
class Course < ActiveRecord::Base
belongs_to :school
has_many :students
...
1
vote
1answer
38 views
Is possible CanCan can :manage, :all except one or more method?
I'm doing:
can :manage, :all if user.role == 'admin'
can :approve, Anuncio do |anuncio|
anuncio.try(:aprovado) == false
end
My second method does not work because the :manage :all override it.
...
1
vote
0answers
22 views
Over securing an app with user permission?
Using Rails 3.2. I have the following nested model:
# country.rb
belongs_to :user
has_many :states
# state.rb
belongs_to :country
has_many :cities
# city.rb
belongs_to :state
As usual, there will ...
0
votes
1answer
30 views
Restrict access for admin part and user's management
I'm using CanCan. There is a user registration page and an admin namespace where an admin manages the users. There is 2 abilities: "normal" and "admin_ability" for admin part of the web site:
...
2
votes
1answer
25 views
Rails route parent ID name and CanCan issue
I'm trying to get a simple route working
/agenda_items/5/feed
To do this, I have the following route setup
resources :agenda_items do
member do
get "/feed", to: "comments#feed"
end
end
In ...
1
vote
1answer
24 views
CanCan not filtering @products in Index
I am working on a Rails 3.2 application with Devise and CanCan.
My user model is User, and I want to restrict the access to the Product resource to the ones created by the User. The relevant code ...
0
votes
0answers
15 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
0answers
44 views
Rails cancan user that have many users
I am trying to do a system that have users that have users. So far there is no problem. I create two roles, :employee and :boss, a boss can have many employee, and an employee have to have one boss.
...
0
votes
0answers
47 views
Rails authorization using Cancan on member routes
I'm co-developing an online database program in Rails using cancan for authorization. To control access we have a feature called projects which allows owners of data to grant read access to users ...
0
votes
1answer
24 views
CanCan Abilities Definition
In my rails application, my user is able to login once and switch between accounts as they please. When they do, I need to reinitialize their abilities since the permissions are set at the account ...
0
votes
1answer
21 views
Using CanCan within a gem
I am unsure if this is possible, but I want to use CanCan within my own gem. I've tried the following code:
module DynamicMenu
require 'engine' if defined?(Rails)
require 'cancan'
module ...
1
vote
1answer
51 views
Rails Cancan - How to Restrict Users From Accessing Custom URL Route
I have a custom route setup that has a location_id in the url (see below)
resources :menu_items, :path => "/location_menu/:location_id"
So when I hit /location_menu/1 it will show me ...
0
votes
0answers
18 views
Cantango rules not working
I'm trying to get permissions working using Cantango (in Rails). The application I'm working on has one User class for all users.
class User < ActiveRecord::Base
# register as a "user class" ...
0
votes
1answer
34 views
RSpec authorization testing with raise_error not working
I'm trying to test how a not logged in user behaves like this
describe "not logged in user" do
user_no_rights
it "can't access action index" do
expect(get :index).to ...
1
vote
1answer
28 views
How can I set up Admin role in CanCan?
I want to add admin role to this. Admin should be able to destroy, and update everything.
Admin is user.id = 1
How can I code it in this?
models/ability.rb
if user
.....
can :read, :all
...
0
votes
1answer
18 views
Do I need a controller for each role in Ruby on Rails 3?
My Ruby on Rails 3 application is using Devise and Cancan.
Concerning the roles, I have admins, managers, users and guests. I have some Posts and I use the generated index function to get my Posts ...
0
votes
1answer
22 views
how to manage CanCan
this is my ability.rb
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user (not logged in)
if user.admin?
can :manage, :all
else
can :read, ...
0
votes
1answer
16 views
How to apply abilities to a non-restful controller in cancan
I'm new to rails and for the life of me I don't "get" cancan.
I've read this tutorial but can't figure out how to apply instructions to my situation.
In the cancan wiki there is:
an ...
-1
votes
0answers
14 views
I am using devise and cancan gems. When I sign_in I get redirect back to sign_in page
Here is the log
Started POST "/users/sign_in" for 127.0.0.1 at 2013-05-02 09:57:19 -0400
Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓", ...
2
votes
1answer
37 views
Using cancan to let Users manage only some models
I have a simple bulletin-board system built with rails (and devise).
I want to add cancan to the system, but I have a problem defining some rules.
In short, my application has a User model, a Forum ...
0
votes
1answer
19 views
Using scopes to limit abilities in CanCan
The CanCan documentation on this seemed a bit confusing.
It provides this example:
can :read, Article, Article.published do |article|
article.published_at <= Time.now
end
where published ...
0
votes
0answers
24 views
With CanCan, limit what roles an admin can assign to self or others through AdminAbility
I'm trying to setup a admin role system, where many admins have different roles. I'm starting with two roles, :super_admin and :office_admin.
I want the :office_admin the ability to manage other ...
0
votes
2answers
21 views
Properly defining an ability in CanCan
I'm using CanCan for authorization. The code below is working the way I intend for users, i.e. it allows non-admin users to view their own pages but not those of other users. However, the line ...
0
votes
0answers
18 views
skip authentication for CKeditor?
i am using ckeditor in my Rails app. it works pretty well, but i did not manage to get the photo upload/brows/send to server to work !
i am using cancan and am getting ...
0
votes
2answers
36 views
Write rule in Cancan or model validation?
Update: After reading the answers, I think I should rephrase my question (as question 3)
From time to time I get confused as to where I should write a some conditional check: in Cancan ability or in ...
0
votes
0answers
20 views
Polymorphism versus Authorization (Roles)
After seeing the Ryan bates screencasts on polymorphism I have some issues to understand when I have to use polymorphism and when I could use a role library like Cancan.
Here a simple use case: I ...
0
votes
2answers
42 views
Authorize nested and polymorphic resources (cancan)
Have models User, Project, Document, Issue, Comment, Ability:
class User < ActiveRecord::Base
has_and_belongs_to_many :projects
end
class Project < ActiveRecord::Base
...
0
votes
1answer
31 views
Testing value of a hash key with CanCan
I have a UserProfile model with a serialized hash that defines various privacy options:
class UserProfile < ActiveRecord::Base
attr_accessible :bio, :first_name, :last_name, :location, ...
0
votes
1answer
51 views
Using RoleModel gem: How to remove all the previously assigned roles from a user
In my RoR application, I use Role Model and CanCan gems. There is no default role for users.
Before I assign roles to a user, role_mask is empty. I can assign multiple roles. But I cannot remove all ...
0
votes
1answer
56 views
Nested resource authorization with devise and cancan
How can I correctly authorize a resource that is nested with devise and cancan? I have implemented the suggested procedure from the documentation but without success.
This issue involves the ability ...
1
vote
1answer
41 views
Using Nested Resources alongside with Cancan
I'm trying to work with Rails nested resources along side with cancan. I have a Dog model and a Friendship model.
class Dog < ActiveRecord::Base
has_many :friendships
has_many :friends, ...
1
vote
2answers
37 views
How to secure user show page alongside user admin functions when using devise
I'm using devise and have let admins manage users with a Manage::UsersController.
This is locked down using cancan:
# models/ability.rb
def initialize(user)
if user admin?
can :manage, ...
0
votes
0answers
80 views
Rails backend: Devise + Cancan + Helios
I've been developing a mobile app that needs to sync with a remote backend. Recently it has been released Helios.io, an open-source mobile backend framework developed by Mattt Thompson. I want to use ...
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
1answer
26 views
Can Can has_many through Explanation help need badly
Dear All (especially Ryan, thank you for this great work),
I am just going completely nut with something that probably is just really stupid, but that for the life of me I can't wrap my brain around ...
0
votes
0answers
23 views
Cancan authorizating operations on nested attributes
I have a form using in which, users can edit their attributes in the User model as well as Photo model. User model has many Photos.
When the user submits the form, the params will have,
:user => ...
0
votes
0answers
55 views
Rails 3.2 Authenticate the current user
What I have set up right now is Devise using CanCan and Rolify.
I have two roles Admin and User
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user ...
1
vote
0answers
40 views
Rails, CanCan nested forms security issue. Read allows to do anything with model
On my site, customer can create some groups and products. Every product is belongs_to group.
Every user can create and update groups, but only which they create themself.
I'm using CanCan gem to ...
0
votes
1answer
96 views
Cancan's load_and_authorize_resource when resource name is different from model/controller name
In my app, I have sheets controller, model name is Sheet but my routes are as below
routes.rb
namespace :magazine do
resources :pages, :controller => "sheets" do
resources :articles do
...
1
vote
1answer
28 views
Cancan error while authorize on nested resource
I'm trying to set access to nested resource (specialty) ex. ".../companies/:id/specialties". Accessing company that doesn't belong to me work fine. But I can't access to my specialties. Please help ...
0
votes
0answers
13 views
What is the standard way to write specs for cancan abilties in rspec?
I have a rails project which has 10 different roles. I am using cancan to manage their abilities. I know two ways to do that:
1) Shared examples and Shared groups
shared_examples "user should be ...


