feat: add email_verified_at field to auth controller mock responses and user management service
Add email_verified_at field to mock user responses in login, registerInstructor, and registerStudent endpoints. Include email_verified_at in UserManagementService user response mapping to ensure consistency across all user-related endpoints.
This commit is contained in:
parent
48e8f56e22
commit
06db182c46
2 changed files with 4 additions and 0 deletions
|
|
@ -183,6 +183,7 @@ export class UserManagementService {
|
|||
id: user.id,
|
||||
username: user.username,
|
||||
email: user.email,
|
||||
email_verified_at: user.email_verified_at,
|
||||
created_at: user.created_at,
|
||||
updated_at: user.updated_at,
|
||||
role: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue