2021-10-27 15:23:28 +05:30
|
|
|
- show_trusted_row = local_assigns.fetch(:show_trusted_row, false)
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
.table-holder.oauth-application-show
|
|
|
|
%table.table
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= _('Application ID')
|
|
|
|
%td
|
|
|
|
.clipboard-group
|
|
|
|
.input-group
|
|
|
|
%input.label.label-monospace.monospace{ id: "application_id", type: "text", autocomplete: 'off', value: @application.uid, readonly: true }
|
|
|
|
.input-group-append
|
|
|
|
= clipboard_button(target: '#application_id', title: _("Copy ID"), class: "gl-button btn btn-default")
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= _('Secret')
|
|
|
|
%td
|
2021-10-27 15:23:28 +05:30
|
|
|
= clipboard_button(clipboard_text: @application.secret, button_text: _('Copy'), title: _("Copy secret"), class: "btn btn-default btn-md gl-button")
|
2021-04-29 21:17:54 +05:30
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= _('Callback URL')
|
|
|
|
%td
|
|
|
|
- @application.redirect_uri.split.each do |uri|
|
|
|
|
%div
|
|
|
|
%span.monospace= uri
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
- if show_trusted_row
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= _('Trusted')
|
|
|
|
%td
|
|
|
|
= @application.trusted? ? _('Yes') : _('No')
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= _('Confidential')
|
|
|
|
%td
|
|
|
|
= @application.confidential? ? _('Yes') : _('No')
|
|
|
|
|
|
|
|
= render "shared/tokens/scopes_list", token: @application
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
.form-actions.gl-display-flex.gl-justify-content-space-between
|
|
|
|
%div
|
|
|
|
- if @created
|
|
|
|
= link_to _('Continue'), index_path, class: 'btn btn-confirm btn-md gl-button gl-mr-3'
|
|
|
|
= link_to _('Edit'), edit_path, class: 'btn btn-default btn-md gl-button'
|
|
|
|
= render 'shared/doorkeeper/applications/delete_form', path: delete_path, submit_btn_css: 'btn btn-danger btn-md gl-button btn-danger-secondary'
|