Commit 69b0876f92b86fbc600da37aa02369b79fc78e80

Authored by Nathan B
2 parents d80ac370 0f5b55a3
Exists in master and in 1 other branch production

Merge pull request #99 from gorenje/show_authentication_token

display the authentication token on the user show page
Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
app/views/users/show.html.haml
... ... @@ -13,6 +13,9 @@
13 13 %th Username
14 14 %td.main= @user.username
15 15 %tr
  16 + %th Token
  17 + %td= @user.authentication_token
  18 + %tr
16 19 %th Admin?
17 20 %td= @user.admin? ? 'Y' : 'N'
18 21 %tr
... ...