services updated
This commit is contained in:
24
Events/AllEvents/authentication/auth/models.py
Normal file
24
Events/AllEvents/authentication/auth/models.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from ApiLayers.ApiValidations.Request import (
|
||||
Login,
|
||||
EmployeeSelection,
|
||||
OccupantSelection,
|
||||
Logout,
|
||||
CreatePassword,
|
||||
ChangePassword,
|
||||
Forgot,
|
||||
Remember,
|
||||
)
|
||||
|
||||
|
||||
class AuthenticationRequestModels:
|
||||
LoginSuperUserRequestModel = Login
|
||||
SelectCompanyOrOccupantTypeSuperUserRequestModel = {
|
||||
"EmployeeSelection": EmployeeSelection,
|
||||
"OccupantSelection": OccupantSelection,
|
||||
}
|
||||
RefresherRequestModel = Remember
|
||||
LogoutRequestModel = Logout
|
||||
|
||||
|
||||
class AuthenticationResponseModels:
|
||||
pass
|
||||
Reference in New Issue
Block a user