Sha256: 375f5fc79443e4f136bf35535f06d16fa939baa9d3d5980c12ac81edb6639561

Contents?: true

Size: 1.37 KB

Versions: 5

Compression:

Stored size: 1.37 KB

Contents

module CanTango
  module Permits
    class AccountPermit < CanTango::Permit

      autoload_modules :Builder, :Finder

      def self.inherited(base_clazz)
        CanTango.config.permits.register_permit_class account_type_name(base_clazz), base_clazz, type, account_name(base_clazz)
      end

      def self.type
        :account
      end

      def self.account_type_name clazz
        clazz.name.demodulize.gsub(/(.*)(AccountPermit)/, '\1').underscore.to_sym
      end

      def account_type
        self.class.account_type_name self.class
      end

      # creates the permit
      # @param [Permits::Ability] the ability
      # @param [Hash] the options
      def initialize ability
        super
      end


      # In a specific Role based Permit you can use 
      #   def permit? user, options = {}
      #     ... permission logic follows
      #
      # This will call the Permit::Base#permit? instance method (the method below)
      # It will only return true if the user matches the role of the Permit class and the
      #
      # If these confitions are not met, it will return false and thus the outer permit 
      # will not run the permission logic to follow
      #
      # Normally super for #permit? should not be called except for this case, 
      # or if subclassing another Permit than Permit::Base
      #
      def permit?
        super
      end
    end

  end
end


Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cantango-0.8.7 lib/cantango/permits/account_permit.rb
cantango-0.8.6.2 lib/cantango/permits/account_permit.rb
cantango-0.8.6.1 lib/cantango/permits/account_permit.rb
cantango-0.8.6 lib/cantango/permits/account_permit.rb
cantango-0.8.5.1 lib/cantango/permits/account_permit.rb