summaryrefslogtreecommitdiff
path: root/lib/gitlab/allowable.rb
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