BigW Consortium Gitlab

allowable.rb 133 Bytes
Newer Older
1 2 3 4 5 6 7
module Gitlab
  module Allowable
    def can?(user, action, subject)
      Ability.allowed?(user, action, subject)
    end
  end
end