vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 0a0f620d0b7982bd5d57b57fe909c02cb0125b48
parent 9132cc4a30eff40e81b7e700c7df45b038f7a38a
Author: Stefan Melmuk <509385+stefan0xC@users.noreply.github.com>
Date:   Sat,  8 Oct 2022 10:27:33 +0200

return "Object" for consistency

Co-authored-by: Jeremy Lin <jjlin@users.noreply.github.com>
Diffstat:
Msrc/api/core/accounts.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/core/accounts.rs b/src/api/core/accounts.rs @@ -180,7 +180,7 @@ async fn register(data: JsonUpcase<RegisterData>, conn: DbConn) -> JsonResult { user.save(&conn).await?; Ok(Json(json!({ - "object": "register", + "Object": "register", "CaptchaBypassToken": "", }))) }