2018-05-09 12:01:36 +05:30
|
|
|
%p.profile-settings-content
|
2021-03-11 19:13:27 +05:30
|
|
|
= s_("DeployTokens|Pick a name for your unique deploy token.")
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
= form_for token, url: create_deploy_token_path(group_or_project, anchor: 'js-deploy-tokens'), method: :post, remote: Feature.enabled?(:ajax_new_deploy_token, group_or_project) do |f|
|
2018-05-09 12:01:36 +05:30
|
|
|
= form_errors(token)
|
|
|
|
|
|
|
|
.form-group
|
2018-11-18 11:00:15 +05:30
|
|
|
= f.label :name, class: 'label-bold'
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.text_field :name, class: 'form-control gl-form-input', data: { qa_selector: 'deploy_token_name_field' }, required: true
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
.form-group
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.label :expires_at, _('Expires at (optional)'), class: 'label-bold'
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.text_field :expires_at, class: 'datepicker form-control', data: { qa_selector: 'deploy_token_expires_at_field' }, value: f.object.expires_at
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Unless you enter a date, the token does not expire.')
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
.form-group
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.label :username, _('Username (optional)'), class: 'label-bold'
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.text_field :username, class: 'form-control'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Unless you specify a username, it is set to "gitlab+deploy-token-{n}".')
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
.form-group
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.label :scopes, _('Scopes [Select 1 or more]'), class: 'label-bold'
|
2018-11-18 11:00:15 +05:30
|
|
|
%fieldset.form-group.form-check
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.check_box :read_repository, class: 'form-check-input', data: { qa_selector: 'deploy_token_read_repository_checkbox' }
|
2021-04-29 21:17:54 +05:30
|
|
|
= f.label :read_repository, 'read_repository', class: 'label-bold form-check-label'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Allows read-only access to the repository.')
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
- if container_registry_enabled?(group_or_project)
|
2018-11-18 11:00:15 +05:30
|
|
|
%fieldset.form-group.form-check
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.check_box :read_registry, class: 'form-check-input', data: { qa_selector: 'deploy_token_read_registry_checkbox' }
|
2021-04-29 21:17:54 +05:30
|
|
|
= f.label :read_registry, 'read_registry', class: 'label-bold form-check-label'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Allows read-only access to registry images.')
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
%fieldset.form-group.form-check
|
|
|
|
= f.check_box :write_registry, class: 'form-check-input'
|
2021-04-29 21:17:54 +05:30
|
|
|
= f.label :write_registry, 'write_registry', class: 'label-bold form-check-label'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Allows write access to registry images.')
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
- if packages_registry_enabled?(group_or_project)
|
2020-05-24 23:13:21 +05:30
|
|
|
%fieldset.form-group.form-check
|
|
|
|
= f.check_box :read_package_registry, class: 'form-check-input'
|
2021-04-29 21:17:54 +05:30
|
|
|
= f.label :read_package_registry, 'read_package_registry', class: 'label-bold form-check-label'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Allows read access to the package registry.')
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
%fieldset.form-group.form-check
|
|
|
|
= f.check_box :write_package_registry, class: 'form-check-input'
|
2021-04-29 21:17:54 +05:30
|
|
|
= f.label :write_package_registry, 'write_package_registry', class: 'label-bold form-check-label'
|
2021-03-11 19:13:27 +05:30
|
|
|
.text-secondary= s_('DeployTokens|Allows write access to the package registry.')
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
.gl-mt-3
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.submit s_('DeployTokens|Create deploy token'), class: 'btn gl-button btn-confirm', data: { qa_selector: 'create_deploy_token_button' }
|