feat(react/settings): port change password

This commit is contained in:
Elian Doran
2025-08-15 14:18:59 +03:00
parent fb559d66fe
commit c02ed17ebc
8 changed files with 132 additions and 134 deletions

View File

@@ -2,7 +2,7 @@ import { AttributeRow, NoteType } from "./rows.js";
type Response = {
success: true,
message: string;
message?: string;
} | {
success: false;
message: string;
@@ -107,3 +107,5 @@ export interface DatabaseBackup {
filePath: string;
mtime: Date;
}
export type ChangePasswordResponse = Response;