Tagged Questions
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
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
22 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
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
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
1answer
46 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
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 ...
-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"=>"✓", ...
0
votes
1answer
57 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
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
83 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
0answers
60 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 ...
0
votes
1answer
48 views
Ruby on Rails - CanCan user is nil during destroy action
I'm getting cancan with devise wired into my first Ruby on Rails app. I have some of it working, but I hit a problem my newbie brain cannot seem to understand.
I'm trying to delete a project model. ...
0
votes
1answer
43 views
CanCan + Devise: Admin user can't get permission even though he should
Here are the code.
class WebsitesController < ApplicationController
load_and_authorize_resource
...
end
class ApplicationController < ActionController::Base
...
check_authorization ...
1
vote
0answers
70 views
Rails wiki gem for production with devise/cancan - not personal use
I've been looking into wikis for use in production in an existing rails app, not for personal use - have seen a few questions on wiki gems here but little outside of personal use. Gollum seems simple ...
0
votes
0answers
22 views
rails_admin cancan abilities not loaded first time
I'm using RailsAdmin, this time with CanCan!
I've built my Ability Model and everything looks nice. Except for this problem:
When the user logs in for the very first time (I'm using Devise), for some ...
0
votes
0answers
150 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 ...
1
vote
1answer
36 views
ArgumentError in Users::RegistrationsController#new
I am trying to get Cancan to work with Devise on my Rails application. I tried to follow the directions here to set it up:
...
0
votes
1answer
159 views
current_user method not found (Rails, Devise, Cancan)
I am using Rails 3.2, Devise and Cancan for an application with 3 user categories: Companies, Customers and Admins.
My problem is that I get this:
undefined local variable or method `current_user' ...
0
votes
0answers
53 views
How to implement account settings with devise
I have a devise + cancan rails 3 application and need to add User settings functionality like on twitter.
The idea is to make the following links accessible to users:
example.com/settings/account
...
1
vote
1answer
60 views
cucumber devise
I'm trying to write a feature to test an authentication of a user model (devise + cancan). To the User can be attributed different roles. The point is to test functionality when authenticated user has ...
0
votes
1answer
41 views
CanCan stopping Devise redirect
I'm using Devise & CanCan for my app. When a user signs in, they are taken to their account page - I have set up a custom redirect for this:
def after_sign_in_path_for(resource)
url_for ...
2
votes
1answer
90 views
How can I secure my use of Devise/CanCan/JavaScript?
I have a Controller that's protected by Devise/CanCan with :authenticate_user! and load_and_authorize_resource. I have to add :except => [:sort] to those in order to get my sort action working in ...
0
votes
3answers
187 views
Devise + CanCan in Ember.js
Is there a non-trivial example / tutorial that implements Devise + CanCan in an Ember.js + Ember-data + Rails app?
0
votes
1answer
73 views
How to configure Devise+Cancan correctly for guest users
In a Rails 3.2 app I'm using Devise + CanCan. The app previously restricted access to only logged in users. I'm in the process of adding a Guest user/ability that will be able to read certain sections ...
0
votes
1answer
18 views
Allow local webservice to update Rails data with CanCan and Devise
I have a local webservice running which needs to POST data to Rails in order to update and add records. How should I work this into my CanCan/Devise authentication/authorization? Is there a way to ...
0
votes
0answers
104 views
devise :token_authenticatable + cancan 2.0 giving 401 Unauthorized
I'm getting 401 Unauthorized error when try to do a request using ?auth_token
I'm using the following stack,
gem 'rails', '3.2.11'
gem 'devise'
gem 'cancan', git: ...
0
votes
1answer
56 views
Relationship between different Devise+Cancan roles
I am implementing an authentication+authorization system in my Rails 3 Application.
I have a HABTM relationship with between Users and Roles.
The roles I will have are : manager,dealer,operator,admin
...
0
votes
0answers
60 views
CanCan in RSpec Controller spec
I spent most of the day trying to root out a problem with a controller spec, and the current workaround seems unacceptable to me. Any take on why this works? ... and what I should do instead.
Given a ...
4
votes
1answer
150 views
Why is this rspec request spec not updating the model?
I have a requests spec for interactions with the User model. I want to make sure that Users with the Admin role can create/edit/destroy Users. I'm having a problem right now where the Edit action does ...
1
vote
1answer
37 views
Why flash message won't appear if I use CanCan with Devise?
Assuming that I'm not signed in.
In this case, it displays this flash notice when accessing to actions in mails_controller.
You need to sign in or sign up before continuing.
However, it won't ...
0
votes
1answer
57 views
Problems with CanCan Methods with Rails3 / Devise
After two days, I've not been able to solve this problem on my own. It seems like it should be pretty simple, but I'm missing something. I'm creating a simple blog with Posts and Authors. Authors have ...
1
vote
1answer
86 views
Authorizing non-logged-in user behavior in rails with cancan and devise
Post: hidden: boolean
I want the logged in user could see all the posts, and the non-logged-in user only have access to posts whose hidden fields are false.
So I write like this in cancan's Ability ...
0
votes
1answer
105 views
Rails role_model with devise gives error “undefined method `roles_mask='”
I have an app with devise. I installed the role_model and cancan gems. I updated the user.rb to read:
require 'rubygems'
require 'role_model'
class User < ActiveRecord::Base
devise ...
0
votes
1answer
13 views
Adding more roles to test beta features using cancan
I currently use devise and cancan for authorization/authentication. I want to give select users access to certain features and hide them to others.
What is the best practice for doing this with my ...
4
votes
4answers
389 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.
...
0
votes
1answer
124 views
Devise / CanCan 2.0 / Omniauth: What permissions are required for Omniauth signin
I am using devise, Omniauth and CanCan 2.0 for authentication / authorization. The problem is that CanCan locks down the app and prevents signin in with Omniauth. What is the minimum set of ...
0
votes
2answers
144 views
Cucumber vs Rspec what to use to check user permissions
I'm using devise and cancan to ensure protection to some areas of my website.
What tool is best to check that a user with a role can access and another role cannot?
Actually I'm creating several ...
0
votes
1answer
22 views
Cant delete object after installing devise & cancan
I installed Devise and Cancan. My user has role super_admin with options shown below:
def initialize(user)
user ||= User.new # guest user
can :manage, :all
end
all works well except deleting ...
2
votes
1answer
87 views
Ajax posting hitting action without authentication with CanCan And Devise
I am using Cancan to authorize my comments resource and devise to authenticate. I have the following controller, when I am not signed in using devise and trying to post a new comment, the user will be ...
0
votes
2answers
45 views
Route exists, but getting error
I am trying this code in my application layout. its a "user navigation" bar at the top of the screen.
<%= link_to "My Profile", edit_profile_path, :class => "user_nav_button" %>
I am ...
0
votes
1answer
81 views
Add specific user roles to a specific model instance using CanCan and Rolify
As I work may way through a Rails app, I have another question. The app allows for users to sign up via Devise. That works. Within the app, users are able to create their own groups called Circles. ...
0
votes
0answers
30 views
Is there any technique to put priority on Devise not CanCan?
Only the registered user can create new Post.
My current codes are like this.
When user click on 'New' button, it shows this because of CanCan.
CanCan::AccessDenied in PostsController#new
But I ...
0
votes
1answer
59 views
Devise's current_user only works for admins
I've got a standard User model, it has in it an admin boolean. All's well and good for users that have that set to true, but for normal users I get this error:
undefined local variable or method ...
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
118 views
use cancan and devise in my application
I want to use cancan in order to limit the users that want to view some pages in my application.
so I try to do it by this tutorial:
http://www.roberthuberdeau.com/articles/9-Blog-tutorial-part-3
I ...
0
votes
1answer
28 views
configuration of cancan and devise
I use this tutorial:
http://www.roberthuberdeau.com/articles/9-Blog-tutorial-part-3
I didn't understand how to do these step:
We only created a role model. We're left with two choices- finish ...
0
votes
1answer
32 views
Rails superuser resource context
The app I'm working on revolves around users belonging to organisations, and only being able to access resources in those organisations. That much is fine, and pretty straight forward.
The system ...
-1
votes
1answer
51 views
How to provide CanCan ability for “view purchased field”?
I'm building a website where people can buy & watch video online. Paid users will see video, others will see only description & buy now button.
There is an "Order" model, with "LineItems" ...
0
votes
1answer
153 views
Cancan + Devise, best way to have admin manage users
I am working on an app where a company admin should be able to create and update users in his company. (Users can also create and update their accounts independently).
I used Devise and Cancan for ...


