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 a1ffa4c28d61ede5611165a9ff7f23605b8786c5
parent ea600ab2b84a4881daba70655d8c7aead83eb8d7
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sun,  1 Jul 2018 15:49:16 +0200

Allow TOTP generation in organizations (Fixes #50)

Diffstat:
Msrc/db/models/cipher.rs | 2+-
Msrc/db/models/organization.rs | 12++++++------
2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/db/models/cipher.rs b/src/db/models/cipher.rs @@ -97,7 +97,7 @@ impl Cipher { "Favorite": self.favorite, "OrganizationId": self.organization_uuid, "Attachments": attachments_json, - "OrganizationUseTotp": false, + "OrganizationUseTotp": true, "CollectionIds": self.get_collections(user_uuid, &conn), "Name": self.name, diff --git a/src/db/models/organization.rs b/src/db/models/organization.rs @@ -66,11 +66,11 @@ impl Organization { "Seats": 10, "MaxCollections": 10, - "Use2fa": false, + "Use2fa": true, "UseDirectory": false, "UseEvents": false, "UseGroups": false, - "UseTotp": false, + "UseTotp": true, "BusinessName": null, "BusinessAddress1": null, @@ -80,8 +80,8 @@ impl Organization { "BusinessTaxNumber": null, "BillingEmail": self.billing_email, - "Plan": "Free", - "PlanType": 0, // Free plan + "Plan": "TeamsAnnually", + "PlanType": 5, // TeamsAnnually plan "Object": "organization", }) @@ -153,11 +153,11 @@ impl UserOrganization { "Seats": 10, "MaxCollections": 10, - "Use2fa": false, + "Use2fa": true, "UseDirectory": false, "UseEvents": false, "UseGroups": false, - "UseTotp": false, + "UseTotp": true, "MaxStorageGb": 10, // The value doesn't matter, we don't check server-side