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 99256b9b3a53831367c0616ce834aeb65f53cbd2
parent 26bf7bc12f9d6eda0426a545d52a7236a39cf5a7
Author: Nick Fox <nick@foxsec.net>
Date:   Thu, 20 Dec 2018 21:37:03 -0500

Prefix unused params with underscore

Diffstat:
Msrc/api/core/organizations.rs | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/api/core/organizations.rs b/src/api/core/organizations.rs @@ -520,8 +520,9 @@ struct AcceptData { Token: String, } -#[post("/organizations/<org_id>/users/<org_user_id>/accept", data = "<data>")] -fn accept_invite(org_id: String, org_user_id: String, data: JsonUpcase<AcceptData>, conn: DbConn) -> EmptyResult { +#[post("/organizations/<_org_id>/users/<_org_user_id>/accept", data = "<data>")] +fn accept_invite(_org_id: String, _org_user_id: String, data: JsonUpcase<AcceptData>, conn: DbConn) -> EmptyResult { +// The web-vault passes org_id and org_user_id in the URL, but we are just reading them from the JWT instead let data: AcceptData = data.into_inner().data; let token = &data.Token; let claims: InviteJWTClaims = match decode_invite_jwt(&token) {