defaulting new accounts to searchable

This commit is contained in:
Roland Osborne 2024-06-07 17:01:22 -07:00
parent bb043e7520
commit 3b35640e68

View File

@ -83,6 +83,7 @@ func AddAccount(w http.ResponseWriter, r *http.Request) {
// create new account
account := store.Account{
Username: username,
Searchable: true,
Handle: strings.ToLower(username),
Password: password,
GUID: fingerprint,