fix: resolve folder drag-and-drop, add remember me, fix pinned folder navigation
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m18s

This commit is contained in:
Elijah 2026-05-23 13:08:13 -07:00
parent 7278008d7e
commit b668418951
5 changed files with 89 additions and 14 deletions

View file

@ -121,10 +121,10 @@ class ApiClient {
}
// --- Auth ---
async login(username: string, password: string, totpCode?: string) {
async login(username: string, password: string, totpCode?: string, rememberMe?: boolean) {
const res = await this.request('/api/auth/login', {
method: 'POST',
body: { username, password, totp_code: totpCode },
body: { username, password, totp_code: totpCode, remember_me: rememberMe },
});
const data = await res.json();
if (res.ok && data.access_token) {