Method: Credential.guest_permitted?
- Defined in:
- app/models/credential.rb
.guest_permitted?(controller, action) ⇒ Boolean
120 121 122 123 |
# File 'app/models/credential.rb', line 120 def self.guest_permitted?(controller,action) # These are controller/actions that don't require auth to access. Probably these acl type questions should go into their own models eventually controller == 'authentication' end |