auth updated routes tested & password is not yet tested

This commit is contained in:
2025-01-29 15:58:42 +03:00
parent a0b1b1bef9
commit f7eedb5ea0
11 changed files with 147 additions and 84 deletions

View File

@@ -2,9 +2,11 @@ from ApiLayers.ApiValidations.Request import (
Login,
EmployeeSelection,
OccupantSelection,
Logout,
CreatePassword,
ChangePassword,
Forgot,
Remember,
)
@@ -13,6 +15,8 @@ class AuthenticationRequestModels:
SelectCompanyOrOccupantTypeSuperUserRequestModel = {
"EmployeeSelection": EmployeeSelection, "OccupantSelection": OccupantSelection,
}
RefresherRequestModel = Remember
LogoutRequestModel = Logout
class AuthenticationResponseModels: