diff options
author | BlackDex <[email protected]> | 2023-02-27 16:37:58 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2023-02-27 16:37:58 +0100 |
commit | 7ec00d3850f0c058314b4bc4a3c5d1094882c434 (patch) | |
tree | 522ee7ddb274a0f0ad9befb3dcf3f7f4f43fbafc /src/api/core/mod.rs | |
parent | af6d17b7013d4d82fac916cb867c0dd97da9c301 (diff) | |
download | vaultwarden-7ec00d3850f0c058314b4bc4a3c5d1094882c434.tar.gz vaultwarden-7ec00d3850f0c058314b4bc4a3c5d1094882c434.zip |
Fix the web-vault v2023.2.0 API calls
- Supports the new Collection/Group/User editing UI's
- Support `/partial` endpoint for cipher updating to allow folder and favorite update for read-only ciphers.
- Prevent `Favorite`, `Folder`, `read-only` and `hide-passwords` from being added to the organizational sync.
- Added and corrected some `Object` key's to the output json.
Fixes #3279
Diffstat (limited to 'src/api/core/mod.rs')
-rw-r--r-- | src/api/core/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs index d029cb60..6a483842 100644 --- a/src/api/core/mod.rs +++ b/src/api/core/mod.rs @@ -237,6 +237,7 @@ fn config() -> Json<Value> { "notifications": format!("{domain}/notifications"), "sso": "", }, + "object": "config", })) } |