37 lines
3.1 KiB
Text
37 lines
3.1 KiB
Text
%p.profile-settings-content
|
|
- group_deploy_tokens_help_link_url = help_page_path('user/project/deploy_tokens/index.md')
|
|
- group_deploy_tokens_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: group_deploy_tokens_help_link_url }
|
|
= s_('DeployTokens|Create a new deploy token for all projects in this group. %{link_start}What are deploy tokens?%{link_end}').html_safe % { link_start: group_deploy_tokens_help_link_start, link_end: '</a>'.html_safe }
|
|
|
|
= gitlab_ui_form_for token, url: create_deploy_token_path(group_or_project, anchor: 'js-deploy-tokens'), method: :post, remote: true do |f|
|
|
|
|
.form-group
|
|
= f.label :name, class: 'label-bold'
|
|
= f.text_field :name, class: 'form-control gl-form-input', data: { qa_selector: 'deploy_token_name_field' }, required: true
|
|
.text-secondary= s_('DeployTokens|Enter a unique name for your deploy token.')
|
|
|
|
.form-group
|
|
= f.label :expires_at, _('Expiration date (optional)'), class: 'label-bold'
|
|
= f.gitlab_ui_datepicker :expires_at, data: { qa_selector: 'deploy_token_expires_at_field' }, value: f.object.expires_at
|
|
.text-secondary= s_('DeployTokens|Enter an expiration date for your token. Defaults to never expire.')
|
|
|
|
.form-group
|
|
= f.label :username, _('Username (optional)'), class: 'label-bold'
|
|
= f.text_field :username, class: 'form-control'
|
|
.text-secondary
|
|
= html_escape(s_('DeployTokens|Enter a username for your token. Defaults to %{code_start}gitlab+deploy-token-{n}%{code_end}.')) % { code_start: '<code>'.html_safe, code_end: '</code>'.html_safe }
|
|
|
|
.form-group
|
|
= f.label :scopes, _('Scopes (select at least one)'), class: 'label-bold'
|
|
= f.gitlab_ui_checkbox_component :read_repository, 'read_repository', help_text: s_('DeployTokens|Allows read-only access to the repository.'), checkbox_options: { data: { qa_selector: 'deploy_token_read_repository_checkbox' } }
|
|
|
|
- if container_registry_enabled?(group_or_project)
|
|
= f.gitlab_ui_checkbox_component :read_registry, 'read_registry', help_text: s_('DeployTokens|Allows read-only access to registry images.'), checkbox_options: { data: { qa_selector: 'deploy_token_read_registry_checkbox' } }
|
|
= f.gitlab_ui_checkbox_component :write_registry, 'write_registry', help_text: s_('DeployTokens|Allows write access to registry images.'), checkbox_options: { data: { qa_selector: 'deploy_token_write_registry_checkbox' } }
|
|
|
|
- if packages_registry_enabled?(group_or_project)
|
|
= f.gitlab_ui_checkbox_component :read_package_registry, 'read_package_registry', help_text: s_('DeployTokens|Allows read-only access to the package registry.'), checkbox_options: { data: { qa_selector: 'deploy_token_read_package_registry_checkbox' } }
|
|
= f.gitlab_ui_checkbox_component :write_package_registry, 'write_package_registry', help_text: s_('DeployTokens|Allows read and write access to the package registry.'), checkbox_options: { data: { qa_selector: 'deploy_token_write_package_registry_checkbox' } }
|
|
|
|
.gl-mt-3
|
|
= f.submit s_('DeployTokens|Create deploy token'), data: { qa_selector: 'create_deploy_token_button' }, pajamas_button: true
|