From 17a0ad607716c0e68645c0ca5ab44603a61c0f68 Mon Sep 17 00:00:00 2001 From: Tom Ruff Date: Mon, 23 Jun 2025 03:46:50 +0300 Subject: [PATCH] Update /app/role-admin/page.tsx to include password status MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added the סיסמה column, so admins will be able to see whether users had changes their password or not. --- app/role-admin/page.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/role-admin/page.tsx b/app/role-admin/page.tsx index 1bf58b4..6edccaa 100644 --- a/app/role-admin/page.tsx +++ b/app/role-admin/page.tsx @@ -277,6 +277,7 @@ export default function RoleAdminPage() { תחום מסגרת צוות + סיסמה פעולות @@ -309,6 +310,13 @@ export default function RoleAdminPage() { {user.team || "לא הוגדר"} + + {user.must_change_password ? ( + דורש שינוי + ) : ( + עודכנה + )} +