Welcome to mirror list, hosted at ThFree Co, Russian Federation.

allowable.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4f7cad2b7902954d663866a2efbf31db92bd794 (plain)
1
2
3
4
5
6
7
module Gitlab
  module Allowable
    def can?(user, action, subject = :global)
      Ability.allowed?(user, action, subject)
    end
  end
end