1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

making remember me to be true by default

This commit is contained in:
Patrik J. Braun 2022-11-21 19:51:57 +01:00
parent 7c09d43bac
commit ef439ea87e

View File

@ -2,6 +2,6 @@ export class LoginCredential {
constructor(
public username: string = '',
public password: string = '',
public rememberMe: boolean = false
public rememberMe: boolean = true
) {}
}