summaryrefslogtreecommitdiff
path: root/app/views/users/index.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:28:25 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:28:25 -0500
commitf72b55ce938a14313091a92d84c4083c3ba4f2fd (patch)
tree19439a28eb3519e060fe63e045dc412dfb3aa71a /app/views/users/index.html.erb
parent0d710239a765787f10de304edc438de2dfaa9824 (diff)
move the separate migrations into the original generates
Diffstat (limited to 'app/views/users/index.html.erb')
-rw-r--r--app/views/users/index.html.erb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb
index 3692112..c0d52a0 100644
--- a/app/views/users/index.html.erb
+++ b/app/views/users/index.html.erb
@@ -6,6 +6,8 @@
<th>Name</th>
<th>Email</th>
<th>User name</th>
+ <th>Password digest</th>
+ <th>Remember token</th>
<th></th>
<th></th>
<th></th>
@@ -18,6 +20,8 @@
<td><%= user.name %></td>
<td><%= user.email %></td>
<td><%= user.user_name %></td>
+ <td><%= user.password_digest %></td>
+ <td><%= user.remember_token %></td>
<td><%= link_to 'Show', user %></td>
<td><%= link_to 'Edit', edit_user_path(user) %></td>
<td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td>