2016-04-15 03:36:44 -04:00
|
|
|
- page_title "Personal Access Tokens"
|
|
|
|
- header_title page_title, profile_personal_access_tokens_path
|
|
|
|
|
|
|
|
.row.prepend-top-default
|
|
|
|
.col-lg-3.profile-settings-sidebar
|
|
|
|
%h4.prepend-top-0
|
|
|
|
= page_title
|
|
|
|
%p
|
|
|
|
You can generate a personal access token for each application you use that needs access to GitLab.
|
|
|
|
.col-lg-9
|
|
|
|
%h5.prepend-top-0
|
|
|
|
Add a Personal Access Token
|
|
|
|
%p.profile-settings-content
|
|
|
|
Pick a name for the application, and we'll give you a unique token.
|
|
|
|
= form_for [:profile, @personal_access_token], method: :post, html: { class: 'js-requires-input' } do |f|
|
|
|
|
|
|
|
|
.form-group
|
|
|
|
= f.label :name, class: 'label-light'
|
|
|
|
= f.text_field :name, class: "form-control", required: true
|
|
|
|
|
|
|
|
.prepend-top-default
|
|
|
|
= f.submit 'Add Personal Access Token', class: "btn btn-create"
|
|
|
|
|
|
|
|
%hr
|
|
|
|
|
|
|
|
%h5
|
|
|
|
Active Personal Access Tokens
|
|
|
|
|
|
|
|
- if @user.personal_access_tokens.exists?
|
|
|
|
.table-responsive
|
|
|
|
%table.table.table-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Token
|
|
|
|
%th Created At
|
2016-04-15 11:24:20 -04:00
|
|
|
%th Actions
|
2016-04-15 03:36:44 -04:00
|
|
|
%tbody
|
2016-04-15 11:24:20 -04:00
|
|
|
- @user.personal_access_tokens.order(:revoked).each do |token|
|
2016-04-15 03:36:44 -04:00
|
|
|
%tr
|
|
|
|
%td= token.name
|
|
|
|
%td= token.token
|
|
|
|
%td= token.created_at
|
2016-04-15 11:24:20 -04:00
|
|
|
- if token.revoked?
|
|
|
|
%td
|
|
|
|
%span.personal-access-tokens-revoked-label Revoked
|
|
|
|
- else
|
|
|
|
%td= link_to "Revoke", revoke_profile_personal_access_token_path(token), method: :put, class: "btn btn-danger", data: {confirm: t('profile.personal_access_tokens.revoke.confirmation')}
|
|
|
|
|
2016-04-15 03:36:44 -04:00
|
|
|
- else
|
|
|
|
%span You don't have any tokens yet.
|