Sha256: a5190bb522377bb56589a4c54348425b2d0271773fad317a35e0670bb6046151
Contents?: true
Size: 501 Bytes
Versions: 4
Compression:
Stored size: 501 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th>Email</th> <th>Access token</th> <th></th> <th></th> <th></th> </tr> <% @users.each do |user| %> <tr> <td><%= user.email %></td> <td><%= user.access_token %></td> <td><%= link_to 'Show', user %></td> <td><%= link_to 'Edit', edit_user_path(user) %></td> <td><%= link_to 'Destroy', user, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New User', new_user_path %>
Version data entries
4 entries across 4 versions & 1 rubygems