Sha256: 7b9491092096224485d61b36e0a8c26e03304fac33cc7e907e15f07c9df72920

Contents?: true

Size: 499 Bytes

Versions: 4

Compression:

Stored size: 499 Bytes

Contents

<%- if @client_apps.blank? -%>
  <h2>You have no Apps</h2>
<%- else -%>
  <h2>Your Apps</h2>
  <% @client_apps.each do |client_app| %>
    <table>
      <tr><td>Name:   </td><td> <%= client_app.name       %></td></tr>
      <tr><td>id:     </td><td> <%= client_app.app_id     %></td></tr>
      <tr><td>Secret: </td><td> <%= client_app.app_secret %></td></tr>
    </table>
    <hr />
  <%- end -%>
<%- end -%>


<div>
  <%= link_to 'Register an New App', new_oauth_client_application_path %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
opro-0.0.1 app/views/oauth/client_application/index.html.erb
opro-0.0.1.pre1.0.2 app/views/oauth/client_application/index.html.erb
opro-0.0.1.pre1.0.1 app/views/oauth/client_application/index.html.erb
opro-0.0.1.pre app/views/oauth/client_application/index.html.erb