summaryrefslogtreecommitdiff
path: root/lib/gitlab/allowable.rb
blob: 3cc218f9db484a263710c4ba113181824fb26358 (plain)
1
2
3
4
5
6
7
8
module Gitlab
  module Allowable
    def can?(user, action, subject)
      Ability.allowed?(user, action, subject)
    end
  end
end