Class: Mumukit::Auth::AllGrant
- Inherits:
-
Grant
- Object
- Grant
- Mumukit::Auth::AllGrant
show all
- Defined in:
- lib/mumukit/auth/grant.rb
Instance Method Summary
collapse
Methods inherited from Grant
#[], #as_json, parse, slug?
Instance Method Details
#access?(organization) ⇒ Boolean
32
33
34
|
# File 'lib/mumukit/auth/grant.rb', line 32
def access?(organization)
true
end
|
#allows?(slug) ⇒ Boolean
28
29
30
|
# File 'lib/mumukit/auth/grant.rb', line 28
def allows?(slug)
true
end
|
#to_s ⇒ Object
36
37
38
|
# File 'lib/mumukit/auth/grant.rb', line 36
def to_s
'*'
end
|