2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
module DeployTokensHelper
|
2022-10-11 01:57:18 +05:30
|
|
|
def expand_deploy_tokens_section?(new_deploy_token, created_deploy_token)
|
|
|
|
created_deploy_token ||
|
|
|
|
new_deploy_token.errors.present? ||
|
2018-05-09 12:01:36 +05:30
|
|
|
Rails.env.test?
|
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def container_registry_enabled?(group_or_project)
|
2018-05-09 12:01:36 +05:30
|
|
|
Gitlab.config.registry.enabled &&
|
2020-11-24 15:15:51 +05:30
|
|
|
can?(current_user, :read_container_image, group_or_project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def packages_registry_enabled?(group_or_project)
|
|
|
|
Gitlab.config.packages.enabled &&
|
2022-10-11 01:57:18 +05:30
|
|
|
can?(current_user, :read_package, group_or_project&.packages_policy_subject)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
def deploy_token_revoke_button_data(token:, group_or_project:)
|
|
|
|
{
|
|
|
|
token: token.to_json(only: [:id, :name]),
|
|
|
|
revoke_path: revoke_deploy_token_path(group_or_project, token)
|
|
|
|
}
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|