Initial Commit: Duty Schedule and Attendance Logbook

This commit is contained in:
2026-03-07 10:16:28 +08:00
parent 73dc735cce
commit c6f536edeb
24 changed files with 3165 additions and 282 deletions
+2 -1
View File
@@ -61,10 +61,11 @@ class AdminUserController {
required String userId,
required String fullName,
required String role,
String religion = 'catholic',
}) async {
await _client
.from('profiles')
.update({'full_name': fullName, 'role': role})
.update({'full_name': fullName, 'role': role, 'religion': religion})
.eq('id', userId);
}