From 0841ddda09e8c3a75c4965fb28e727f1c43285e4 Mon Sep 17 00:00:00 2001 From: Jyri-Petteri Paloposki Date: Thu, 23 Jul 2020 21:58:16 +0300 Subject: [PATCH] Show user email in user list --- app/views/users/index.html.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb index faf653b0..488edac3 100644 --- a/app/views/users/index.html.erb +++ b/app/views/users/index.html.erb @@ -6,6 +6,7 @@ <%= User.human_attribute_name('login') %> <%= User.human_attribute_name('display_name') %> + <%= User.human_attribute_name('email') %> <%= User.human_attribute_name('auth_type') %> <%= User.human_attribute_name('open_id_url') %> <%= t('users.total_actions') %> @@ -18,6 +19,7 @@ id="user-<%= user.id %>"> <%=h user.login %> <%=h user.display_name %> + <%=h user.email %> <%= h user.auth_type %> <%= h user.open_id_url || '-' %> <%= h user.todos.size %>