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

Version Path
adminpanel-2.1.7 test/dummy/app/models/ability.rb
adminpanel-2.1.7 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.6 test/dummy/app/models/ability.rb
adminpanel-2.1.6 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.5 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.5 test/dummy/app/models/ability.rb
adminpanel-2.1.3 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.3 test/dummy/app/models/ability.rb
adminpanel-2.1.2 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.2 test/dummy/app/models/ability.rb
adminpanel-2.1.1 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.1.1 test/dummy/app/models/ability.rb
adminpanel-2.1.0 spec/dummy/app/models/ability.rb
adminpanel-2.1.0 lib/generators/adminpanel/initialize/templates/ability.rb
adminpanel-2.0.1 spec/dummy/app/models/ability.rb
adminpanel-2.0.0 spec/dummy/app/models/ability.rb