summaryrefslogtreecommitdiff
path: root/app/views/sessions/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/sessions/index.html.erb')
-rw-r--r--app/views/sessions/index.html.erb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/sessions/index.html.erb b/app/views/sessions/index.html.erb
index 707a47d..43a7e1f 100644
--- a/app/views/sessions/index.html.erb
+++ b/app/views/sessions/index.html.erb
@@ -4,6 +4,7 @@
<thead>
<tr>
<th>User</th>
+ <th>Token</th>
<th></th>
<th></th>
<th></th>
@@ -14,6 +15,7 @@
<% @sessions.each do |session| %>
<tr>
<td><%= session.user %></td>
+ <td><%= session.token %></td>
<td><%= link_to 'Show', session %></td>
<td><%= link_to 'Edit', edit_session_path(session) %></td>
<td><%= link_to 'Destroy', session, method: :delete, data: { confirm: 'Are you sure?' } %></td>