gitlab-org--gitlab-foss/lib/gitlab/ci_access.rb

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

12 lines
291 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2017-05-22 19:44:59 +00:00
module Gitlab
# For backwards compatibility, generic CI (which is a build without a user) is
# allowed to :build_download_code without any other checks.
class CiAccess
def can_do_action?(action)
action == :build_download_code
end
end
end