Sha256: 73d6513855ec0c52554bd057f386261d12847e98fbfc0c8d60aa961dd9d27db1

Contents?: true

Size: 1.23 KB

Versions: 2

Compression:

Stored size: 1.23 KB

Contents

<h2>Show Client</h2>

<div class="field_show">
  <b>Client URI:</b>
  <%= @client.uri %>
</div>

<div class="field_show">
  <b>Name:</b>
  <%= @client.name %>
</div>

<div class="field_show">
  <b>Secret:</b>
  <%= @client.secret %>
</div>

<div class="field_show">
  <b>Site URI:</b>
  <%= @client.site_uri %>
</div>

<div class="field_show">
  <b>Redirect URI:</b>
  <%= @client.redirect_uri %>
</div>

<div class="field_show">
  <b>Scope:</b>
  <%= @client.scope_pretty %> 
  <span class="details">(includes <%= @client.scope_values_pretty %>)</span>
</div>

<div class="field_show">
  <b>Info:</b>
  <%= @client.info %>
</div>

<div class="actions button-container footer_buttons">
  <div class="button-group">
    <%= link_to 'Back', oauth2_provider_engine.oauth2_provider_clients_path, class: "button icon arrowleft" %>
    <%= link_to 'Edit', oauth2_provider_engine.edit_oauth2_provider_client_path(@client), class: "button" %>
    <%= link_to 'Destroy', oauth2_provider_engine.oauth2_provider_client_path(@client), :confirm => 'Are you sure?', :method => :delete, class: "button danger" %>
  </div>

  <div class="button-group">
    <%= link_to 'Simulate Authorization', authorization_uri(@client, "all"), class: "button icon search" %>
  </div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oauth2_provider_engine-0.0.2 app/views/oauth2_provider/clients/show.html.erb
oauth2_provider_engine-0.0.1 app/views/oauth2_provider/clients/show.html.erb