Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_show.html.haml « applications « doorkeeper « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b075cece87775b8cb8aa73c183586dc16165ac56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
- show_trusted_row = local_assigns.fetch(:show_trusted_row, false)

.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, data: { qa_selector: 'application_id_field' } }
            .input-group-append
              = clipboard_button(target: '#application_id', title: _("Copy ID"), class: "gl-button btn btn-default")
    %tr
      %td
        = _('Secret')
      %td
        #js-oauth-application-secret{ data: { initial_secret: @application.plaintext_secret, renew_path: renew_path } }

    %tr
      %td
        = _('Callback URL')
      %td
        - @application.redirect_uri.split.each do |uri|
          %div
            %span.monospace= uri

    - if show_trusted_row
      %tr
        %td
          = _('Trusted')
        %td
          = @application.trusted? ? _('Yes') : _('No')

    %tr
      %td
        = _('Confidential')
      %td
        = @application.confidential? ? _('Yes') : _('No')

    = render "shared/tokens/scopes_list", token: @application

.form-actions.gl-display-flex.gl-justify-content-space-between
  %div
    - if @created
      = link_button_to _('Continue'), index_path, class: 'gl-mr-3', variant: :confirm
    = link_button_to _('Edit'), edit_path
  = render 'shared/doorkeeper/applications/delete_form', path: delete_path

-# Create a hidden field to save the ID of application created
= hidden_field_tag(:id_of_application, @application.id, data: { qa_selector: 'id_of_application_field' })