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

_index.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: f28cc64b9690b8721f2497f9e0ec2ed35644d1c5 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
- @force_desktop_expanded_sidebar = true
- add_form_class = 'gl-display-none' if !form_errors(@application)
- hide_class = 'gl-display-none' if form_errors(@application)

.settings-section.js-search-settings-section
  .settings-sticky-header
    .settings-sticky-header-inner
      %h4.gl-my-0
        = page_title
  %p.gl-text-secondary
    - if oauth_applications_enabled
      - if oauth_authorized_applications_enabled
        = _("Manage applications that can use GitLab as an OAuth provider, and applications that you've authorized to use your account.")
      - else
        = _("Manage applications that use GitLab as an OAuth provider.")
    - else
      = _("Manage applications that you've authorized to use your account.")
  - if oauth_applications_enabled
    = render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card oauth-applications js-toggle-container' }, header_options: { class: 'gl-new-card-header' }, body_options: { class: 'gl-new-card-body gl-px-0' }) do |c|
      - c.with_header do
        .gl-new-card-title-wrapper
          %h3.gl-new-card-title
            = _('Your applications')
          .gl-new-card-count
            = sprite_icon('applications', css_class: 'gl-mr-2')
            = @applications.size
        .gl-new-card-actions
          = render Pajamas::ButtonComponent.new(size: :small, button_options: { class: "js-toggle-button js-toggle-content #{hide_class}" }) do
            = _('Add new application')
      - c.with_body do
        .gl-new-card-add-form.gl-m-3.js-toggle-content{ class: add_form_class }
          %h4.gl-mt-0
            = _('Add new application')
          = render 'shared/doorkeeper/applications/form', url: form_url, cancel: true

        - if @applications.any?
          .table-holder
            %table.table.b-table.gl-table.b-table-stacked-sm.gl-mt-n1.gl-mb-n2
              %thead.d-none.d-md-table-header-group
                %tr
                  %th= _('Name')
                  %th= _('Callback URL')
                  %th= _('Clients')
                  %th.last-heading
              %tbody
                - @applications.each do |application|
                  %tr{ id: "application_#{application.id}" }
                    %td{ data: { label: _('Name') } }
                      = link_to application.name, application_url.call(application)
                    %td{ data: { label: _('Callback URL') } }
                      - application.redirect_uri.split.each do |uri|
                        = uri
                    %td{ data: { label: _('Clients') } }
                      = application.access_tokens.count
                    %td{ class: 'gl-py-3!', data: { label: _('Actions') } }
                      %div{ class: 'gl-display-flex! gl-pl-0!' }
                        = render Pajamas::ButtonComponent.new(category: :tertiary, href: edit_application_url.call(application), icon: 'pencil', button_options: { class: 'has-tooltip gl-mr-3', 'title': _('Edit'), 'aria-label': _('Edit') })
                        = render 'shared/doorkeeper/applications/delete_form', path: application_url.call(application), small: true
        - else
          .gl-new-card-empty.gl-px-5.gl-py-4.js-toggle-content
            = _("You don't have any applications.")

  - else
    .bs-callout.bs-callout-disabled
      = _('Adding new applications is disabled in your GitLab instance. Please contact your GitLab administrator to get the permission.')

  - if oauth_authorized_applications_enabled
    = render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card oauth-authorized-applications' }, header_options: { class: 'gl-new-card-header' }, body_options: { class: 'gl-new-card-body gl-px-0' }) do |c|
      - c.with_header do
        .gl-new-card-title-wrapper
          %h3.gl-new-card-title
            = _('Authorized applications')
          .gl-new-card-count
            = sprite_icon('applications', css_class: 'gl-mr-2')
            = @authorized_tokens.size
      - c.with_body do
        - if @authorized_tokens.any?
          .table-holder
            %table.table.b-table.gl-table.b-table-stacked-sm.gl-mt-n1.gl-mb-n2
              %thead.d-none.d-md-table-header-group
                %tr
                  %th= _('Name')
                  %th= _('Authorized At')
                  %th= _('Scope')
                  %th
              %tbody
                - @authorized_tokens.each do |token|
                  %tr{ id: ("application_#{token.application.id}" if token.application) }
                    %td{ data: { label: _('Name') } }
                      - if token.application
                        = token.application.name
                      - else
                        = _('Anonymous')
                        .form-text.text-muted
                          %em= _("Authorization was granted by entering your username and password in the application.")
                    %td{ data: { label: _('Authorized At') } }
                      = token.created_at
                    %td{ data: { label: _('Scope') } }
                      = token.scopes
                    %td{ class: 'gl-py-3!', data: { label: _('Actions') } }
                      - if token.application
                        = render 'doorkeeper/authorized_applications/delete_form', application: token.application
                      - else
                        = render 'doorkeeper/authorized_applications/delete_form', token: token
        - else
          .gl-new-card-empty.gl-px-5.gl-py-4{ class: hide_class }
            = _("You don't have any authorized applications.")