Sha256: 43b4292580f39c7fbc4bf980b845748c2ebf29708860ecb5b8861ac61babb49e

Contents?: true

Size: 922 Bytes

Versions: 2

Compression:

Stored size: 922 Bytes

Contents

<div class="span16">
  <header class="page-header">
    <h1>Application: <%= @application.name %></h1>
  </header>
</div>

<div class="span10">
  <h4>Callback urls:</h4>
  <p id="callback_url">
    <% @application.redirect_uri.split.each do |uri| %><code><%= uri %></code> <% end %>
  </p>

  <h4>Application Id:</h4>
  <p><code id="application_id"><%= @application.uid %></code></p>

  <h4>Secret:</h4>
  <p><code id="secret"><%= @application.secret %></code></p>

  <h4>Link to authorization code:</h4>
  <p><%= link_to 'Authorize', oauth_authorization_path(:client_id => @application.uid, :redirect_uri => @application.redirect_uri, :response_type => 'code' ) %></p>
</div>

<div class="span6">
  <h3>Actions</h3>
  <p><%= link_to 'List all', oauth_applications_path %></p>
  <p><%= link_to 'Edit', edit_oauth_application_path(@application) %></p>
  <p><%= render 'delete_form', application: @application %></p>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
doorkeeper-1.0.0 app/views/doorkeeper/applications/show.html.erb
doorkeeper-1.0.0.rc2 app/views/doorkeeper/applications/show.html.erb