BigW Consortium Gitlab

allowable.rb 101 Bytes
module Gitlab
  module Allowable
    def can?(*args)
      Ability.allowed?(*args)
    end
  end
end