mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
8 lines
131 B
Ruby
8 lines
131 B
Ruby
class Guest
|
|
class << self
|
|
def can?(action, subject = :global)
|
|
Ability.allowed?(nil, action, subject)
|
|
end
|
|
end
|
|
end
|