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: f48abcc86d53ac932898619b76c35a361dcffaa6 (plain)
1
2
3
4
5
6
7
module Gitlab
  module Allowable
    def can?(user, action, subject)
      Ability.allowed?(user, action, subject)
    end
  end
end