846e581732
to make sure we mean the global permissions
7 lines
143 B
Ruby
7 lines
143 B
Ruby
module Gitlab
|
|
module Allowable
|
|
def can?(user, action, subject = :global)
|
|
Ability.allowed?(user, action, subject)
|
|
end
|
|
end
|
|
end
|