feat: password reset support
Some checks failed
Release / build (push) Failing after 3m38s

This commit is contained in:
2025-03-30 21:28:01 +08:00
parent 128cdcee52
commit f6ac467265
20 changed files with 2598 additions and 1387 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023. Gardel <sunxinao@hotmail.com> and contributors
* Copyright (C) 2023-2025. Gardel <sunxinao@hotmail.com> and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -16,10 +16,11 @@
*/
export type AppState = {
login: boolean
login: string
accessToken: string
tokenValid: boolean
loginTime: number
profileName: string
uuid: string
passwordReset: boolean
}