7 lines
101 B
Ruby
7 lines
101 B
Ruby
module Gitlab
|
|
module Allowable
|
|
def can?(*args)
|
|
Ability.allowed?(*args)
|
|
end
|
|
end
|
|
end
|