Add Node auth routes for ACS login

This commit is contained in:
unknown
2026-07-14 15:57:58 +09:00
parent ce82cf5a26
commit 7c8bd37b12
8 changed files with 564 additions and 0 deletions

View File

@@ -2,3 +2,6 @@ username,full_name,email,department,password,must_change_password,roles
admin,관리자,admin@itcenter.local,IT운영팀,ChangeMe123!,true,ADMIN
security,보안담당,security@itcenter.local,보안팀,ChangeMe123!,true,SECURITY
host,홍길동,host@itcenter.local,개발1팀,ChangeMe123!,true,HOST
a,관리자,a@itcenter.local,IT운영팀,1,false,ADMIN
s,보안담당,s@itcenter.local,보안팀,1,false,SECURITY
h,홍길동,h@itcenter.local,개발1팀,1,false,HOST
1 username full_name email department password must_change_password roles
2 admin 관리자 admin@itcenter.local IT운영팀 ChangeMe123! true ADMIN
3 security 보안담당 security@itcenter.local 보안팀 ChangeMe123! true SECURITY
4 host 홍길동 host@itcenter.local 개발1팀 ChangeMe123! true HOST
5 a 관리자 a@itcenter.local IT운영팀 1 false ADMIN
6 s 보안담당 s@itcenter.local 보안팀 1 false SECURITY
7 h 홍길동 h@itcenter.local 개발1팀 1 false HOST