Merge pull request #3492 from harry-wood/oauth-doc

OAuth updates to CONFIGURE doc + cosmetic tweak
This commit is contained in:
Andy Allan 2022-03-09 17:04:37 +00:00 committed by GitHub
commit 13aead5601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 15 deletions

View file

@ -34,10 +34,12 @@
<p><%= t(".no_apps_html", :oauth => link_to(t(".oauth"), "https://oauth.net")) %></p>
<% else %>
<p><%= t ".registered_apps" %></p>
<% @client_applications.each do |client| %>
<div class="client_application">
<%= link_to client.name, :action => :show, :id => client.id %>
</div>
<ul>
<% @client_applications.each do |client| %>
<li class="client_application">
<%= link_to client.name, :action => :show, :id => client.id %>
</li>
<% end %>
</ul>
<% end %>
<% end %>
<h3><%= link_to t(".register_new"), :action => :new %></h3>
<%= link_to t(".register_new"), { :action => :new }, :class => "btn btn-outline-primary" %>