debian-mirror-gitlab/lib/gitlab/allowable.rb
2017-09-10 17:25:29 +05:30

8 lines
101 B
Ruby

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