Authentication
Verify Reset Token
Verify if a password reset token is valid without using it.
Used by frontend to pre-validate the token before showing the reset form.
Args: token: The reset token to verify. reset_service: Password reset service dependency.
Returns: Token validity status and expiration time.
GET
Verify Reset Token
Previous
AuthorizeInitiate OAuth authorization flow.
Generates an authorization URL for the specified provider and stores
the flow state in the database for CSRF protection.
Flow:
1. Resolve provider configuration (account override -> system fallback)
2. Generate state token (if not provided)
3. Store state in oauth_states table
4. Generate authorization URL via provider handler
5. Return URL and state
Next
Verify Reset Token