Added stash creation. Added dialog framework.

This commit is contained in:
2024-03-26 04:14:42 +01:00
parent 9de289a0fb
commit 68b9658ba6
9 changed files with 377 additions and 82 deletions

View File

@@ -47,6 +47,7 @@ export async function login(credentials, userIp) {
const { user, stashes } = await fetchUser(credentials.username.trim(), {
email: true,
raw: true,
includeStashes: true,
}).catch(() => {
throw new HttpError('Username or password incorrect', 401);
});