]> git.openstreetmap.org Git - rails.git/commitdiff
Replace content_tag_for with a simple tr element
authorTom Hughes <tom@compton.nu>
Tue, 3 Dec 2019 22:54:04 +0000 (22:54 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 3 Dec 2019 22:54:55 +0000 (22:54 +0000)
app/views/oauth_clients/index.html.erb
test/controllers/oauth_clients_controller_test.rb

index 41e1e144660cf59f063ace779677c987b79d5456..f1dc4afcd67e829e5c75ca8a5d37010d695ff995 100644 (file)
@@ -6,19 +6,22 @@
 <h3><%= t ".my_tokens" %></h3>
 <p><%= t ".list_tokens" %></p>
 <table>
-  <tr><th><%= t ".application" %></th>
-    <th><%= t ".issued_at" %></th><th>&nbsp;</th></tr>
+  <tr>
+    <th><%= t ".application" %></th>
+    <th><%= t ".issued_at" %></th>
+    <th>&nbsp;</th>
+  </tr>
   <% @tokens.each do |token| %>
-    <%= content_tag_for :tr, token do %>
+    <tr>
       <td><%= link_to token.client_application.name, token.client_application.url %></td>
       <td><%= token.authorized_at %></td>
       <td>
-  <%= form_tag :controller => "oauth", :action => "revoke" do %>
-  <%= hidden_field_tag "token", token.token %>
-  <%= submit_tag t(".revoke") %>
-  <% end %>
+        <%= form_tag :controller => "oauth", :action => "revoke" do %>
+          <%= hidden_field_tag "token", token.token %>
+          <%= submit_tag t(".revoke") %>
+        <% end %>
       </td>
-    <% end %>
+    </tr>
   <% end %>
 </table>
 <% end %>
index 81ab290b94a8e7938021962e3e42931f27aedb58..7a963a8e242907f2965f3d562427a2feeb8a025f 100644 (file)
@@ -37,6 +37,7 @@ class OauthClientsControllerTest < ActionController::TestCase
   def test_index
     user = create(:user)
     create_list(:client_application, 2, :user => user)
+    create_list(:access_token, 2, :user => user)
 
     get :index,
         :params => { :display_name => user.display_name }