feat: implement forgot password feature (#5534)
This commit is contained in:
parent
f546db5437
commit
00b4cc3cd4
33 changed files with 1000 additions and 26 deletions
|
|
@ -17,6 +17,10 @@ class SecurityConfig(BaseModel):
|
|||
default=None,
|
||||
)
|
||||
|
||||
RESET_PASSWORD_TOKEN_EXPIRY_HOURS: PositiveInt = Field(
|
||||
description='Expiry time in hours for reset token',
|
||||
default=24,
|
||||
)
|
||||
|
||||
class AppExecutionConfig(BaseModel):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue