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

show.html.haml « applications « doorkeeper « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82e78b4af132472bfe0ba411d4e67b25b5781baf (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
%h3.page-title
  Application: #{@application.name}


%table.table
  %tr
    %td
      Application Id
    %td
      %code#application_id= @application.uid
  %tr
    %td
      Secret:
    %td
      %code#secret= @application.secret

  %tr
    %td
      Callback url
    %td
      - @application.redirect_uri.split.each do |uri|
        %div
          %span.monospace= uri
.form-actions
  = link_to 'Edit', edit_oauth_application_path(@application), class: 'btn btn-primary wide pull-left'
  = render 'delete_form', application: @application, submit_btn_css: 'btn btn-danger prepend-left-10'