Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 8th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 4  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Cancan and devise not working
  2. class Ability
  3.  include CanCan::Ability
  4.  
  5.   def initialize(user)
  6.     user ||= User.new # guest user (not logged in)
  7.     if user.clearance.equal?("2")
  8.       can :create, Post
  9.       can :manage, Post, :user_id => user.id
  10.     else
  11.       can :read, :all
  12.     end
  13.   end
  14.  
  15. end