summaryrefslogtreecommitdiff
path: root/lib/gitlab/allowable.rb
blob: 45c2b01dd8fa75bf8c78ed9aa9a8bfa62391c5f8 (plain)
1
2
3
4
5
6
7
module Gitlab
  module Allowable
    def can?(*args)
      Ability.allowed?(*args)
    end
  end
end