Module: FatModelAuth::ViewHelpers
- Defined in:
- lib/fat_model_auth/view_helpers.rb
Instance Method Summary collapse
Instance Method Details
#allowed_to?(options) ⇒ Boolean
3 4 5 6 7 8 9 |
# File 'lib/fat_model_auth/view_helpers.rb', line 3 def allowed_to?() actions, = .first actions.to_s.split('_or_').any? do |action| .allows(current_user).send "to_#{action}?" end end |