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 cd0c49eaf6c107af4f56223be578f8ed80352a5e
parent 080e38d227a086b1493b58d24d4789d5551de221
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": "", }))) }