BigW Consortium Gitlab

allowable.rb 101 Bytes
Newer Older
1 2
module Gitlab
  module Allowable
3 4
    def can?(*args)
      Ability.allowed?(*args)
5 6 7
    end
  end
end