summaryrefslogtreecommitdiff
path: root/lib/gitlab/allowable.rb
blob: 4518c8a862cf2efad39ce92dc234b8433f8345f6 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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