Sha256: 6a4f4c2111387705b77e53ed4e7197ae60981abea6f7f4a1ea116c3d3e42f52e

Contents?: true

Size: 953 Bytes

Versions: 1

Compression:

Stored size: 953 Bytes

Contents

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

<div class="span10">
  <h4>Callback url:</h4>
  <p><code id="callback_url"><%= @application.redirect_uri %></code></p>

  <h4>Application Id:</h4>
  <p><code id="application_id"><%= @application.id %></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.id, :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><%= link_to 'Remove', [:oauth, @application], :method => :delete, :data => { :confirm => "Are you sure?" } %></p>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchkeeper-0.6.7 app/views/doorkeeper/applications/show.html.erb