debian-mirror-gitlab/lib/gitlab/allowable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
128 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module Allowable
2023-04-23 21:23:45 +05:30
def can?(...)
Ability.allowed?(...)
2017-08-17 22:00:37 +05:30
end
end
end