7 lines
133 B
Ruby
7 lines
133 B
Ruby
module Gitlab
|
|
module Allowable
|
|
def can?(user, action, subject)
|
|
Ability.allowed?(user, action, subject)
|
|
end
|
|
end
|
|
end
|