feat: introduce CourseEditorLayout and AppHeader, add organization domain migration, and update Docker configurations and auth scripts

This commit is contained in:
2025-12-29 18:00:34 -03:00
parent 3a02ecb757
commit ad56d8a81c
30 changed files with 558 additions and 405 deletions
+2
View File
@@ -101,6 +101,7 @@ pub async fn register(
email: user.email,
full_name: user.full_name,
role: user.role,
organization_id: user.organization_id,
},
token,
}))
@@ -129,6 +130,7 @@ pub async fn login(
email: user.email,
full_name: user.full_name,
role: user.role,
organization_id: user.organization_id,
},
token,
}))