Sha256: 4400e4d2ce320d98edd651a1b5981d2721e4ac7edca89043e4abb16ae70076b3
Contents?: true
Size: 1002 Bytes
Versions: 16
Compression:
Stored size: 1002 Bytes
Contents
class Ability include CanCan::Ability def initialize(user) if user.group.name == 'Admin' can :manage, :all else # cannot :manage, Adminpanel::User # can :manage, Adminpanel::Analytic # can :manage, Adminpanel::Section # can :manage, Adminpanel::Gallery # can :manage, Adminpanel::Category end # The first argument to `can` is the action you are giving the user # permission to do. # If you pass :manage it will apply to every action. Other common actions # here are :read, :create, :update and :destroy. # # The second argument is the resource the user can perform the action on. # If you pass :all it will apply to every resource. Otherwise pass a Ruby # class of the resource. # # The third argument is an optional hash of conditions to further filter the # objects. # For example, here the user can only update published articles. # # can :update, Article, :published => true end end
Version data entries
16 entries across 9 versions & 1 rubygems