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: 879247d01742df5724c327b446c9e379b13506cc (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  module Allowable
    def can?(...)
      Ability.allowed?(...)
    end
  end
end