Sha256: 253d694498a6a116826dfbbb97f7e862f485c3baeed549f8427df21db22966be
Contents?: true
Size: 1.58 KB
Versions: 60
Compression:
Stored size: 1.58 KB
Contents
# frozen_string_literal: true # Implementation class for Cancan gem. Instead of overriding this class, consider adding new permissions # using the special +register_ability+ method which allows extensions to add their own abilities. # # See http://github.com/ryanb/cancan for more details on cancan. require 'cancan' module Ibrain class Ability include CanCan::Ability class_attribute :abilities self.abilities = Set.new attr_reader :user # Allows us to go beyond the standard cancan initialize method which makes it difficult for engines to # modify the default +Ability+ of an application. The +ability+ argument must be a class that includes # the +CanCan::Ability+ module. The registered ability should behave properly as a stand-alone class # and therefore should be easy to test in isolation. def self.register_ability(ability) abilities.add(ability) end def self.remove_ability(ability) abilities.delete(ability) end def initialize(current_user) @user = current_user || Ibrain.user_class.new activate_permission_sets register_extension_abilities end private # Before, this was the only way to extend this ability. Permission sets have been added since. # It is recommended to use them instead for extension purposes if possible. def register_extension_abilities Ability.abilities.each do |clazz| ability = clazz.send(:new, user) merge(ability) end end def activate_permission_sets Ibrain::Config.roles.activate_permissions! self, user end end end
Version data entries
60 entries across 60 versions & 1 rubygems