blob: bd921322476bcbada18eb5ec8538ea61a565389f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module DeployTokensHelper
def expand_deploy_tokens_section?(deploy_token)
deploy_token.persisted? ||
deploy_token.errors.present? ||
Rails.env.test?
end
def container_registry_enabled?(project)
Gitlab.config.registry.enabled &&
can?(current_user, :read_container_image, project)
end
end
|