gitlab-org--gitlab-foss/lib/gitlab/allowable.rb
2017-06-27 12:44:37 -07:00

7 lines
101 B
Ruby

module Gitlab
module Allowable
def can?(*args)
Ability.allowed?(*args)
end
end
end