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: 45c2b01dd8fa75bf8c78ed9aa9a8bfa62391c5f8 (plain)
1
2
3
4
5
6
7
module Gitlab
  module Allowable
    def can?(*args)
      Ability.allowed?(*args)
    end
  end
end