Module: FatModelAuth::ViewHelpers

Defined in:
lib/fat_model_auth/view_helpers.rb

Instance Method Summary collapse

Instance Method Details

#allowed_to?(options) ⇒ Boolean

Returns:

  • (Boolean)


3
4
5
6
7
8
9
# File 'lib/fat_model_auth/view_helpers.rb', line 3

def allowed_to?(options)
  actions, authority = options.first

  actions.to_s.split('_or_').any? do |action|
    authority.allows(current_user).send "to_#{action}?"
  end
end