Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8197581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:46:17+00:00 2026-06-07T05:46:17+00:00

OK, I’ve followed the railsapps template instructions on github, slavishly copied ryanb’s railscast on

  • 0

OK, I’ve followed the railsapps template instructions on github, slavishly copied ryanb’s railscast on CanCan (swapping out Comment variable for my Event model). I’ve built a new user and assigned it the “Sponsor” role with a subset of abilities given to the admin role. When I load it up in Rails, I get

undefined method `role?’ for User:0x08 …

OK, I’m working my way backward within console to redo the assignment of a new user to the “sponsor” role and to see if something’s broken. If you look down at the end, I see something that appears to be broken but unsure how to fix it. Here’s my ability.rb

class Ability
 include CanCan::Ability

 def initialize(user)
   user ||= Us  # guest user (not logged in)
   if user.has_role? :admin
     can :manage, :all
   else
     can :read, :all
   end

   if user.role? :sponsor
     can :create, Event
     can :read, Event
     can :update, Event do |event|
       event.try(:user) == user
     end
   else
     can :read, :all
   end

 end
end

My event.rb:

resourcify
  belongs_to :school

A school has_many events, has_and_belongs_to_many_users and belongs_to :event. In console, I made a new_user with the right name, school_id, email, etc. That worked as expected. I then:

user.add_role "sponsor"

That worked as I could see that the user id lined up with the role id for sponsor. The next step is where I think my problem starts.

ability = Ability.new(new_user)

That yields the following:

SELECT COUNT(*) FROM “roles” INNER JOIN “users_roles” ON “roles”.”id” = “users_roles”.”role_id” WHERE “users_roles”.”user_id” = 5 AND (((name = ‘admin’) AND (resource_type IS NULL)

The user_id is right but the “name” is not ‘admin’. I would think it should pull the ‘sponsor’ name?

This may be a simple question, but I’m guessing this mis-assignment may be the root of my problem of why the events#index errors out indicated above. It seems to assume that the Ability.new is stuck on “admin.” What am I overlooking, thanx, sam

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:46:18+00:00Added an answer on June 7, 2026 at 5:46 am

    You are querying user’s role with wrong code.

    user.role? :sponsor # wrong
    

    With rolify you need something like this

    user.has_role? :sponsor
    user.has_role? :sponsor, School
    user.has_role? :sponsor, School.first
    

    try with simple rolify commands in console without cancan

    user.add_role :sponsor
    user.has_role? :sponsor
    

    this is very normal that, Ability.new yields a select query with admin role as you have

    if user.has_role? :admin
    

    in your Ability initializer

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.