diff options
author | MFijak <[email protected]> | 2022-10-20 15:31:53 +0200 |
---|---|---|
committer | MFijak <[email protected]> | 2022-10-20 15:31:53 +0200 |
commit | 21bc3bfd538157b341191c9caeddc86ca6fe49c3 (patch) | |
tree | 592d28e3537f97489f12074bb9c4d2f91e5aed83 /src/api/mod.rs | |
parent | 4cb5122e908b57efa1bd1b3c0a8707f129cb4823 (diff) | |
download | vaultwarden-21bc3bfd538157b341191c9caeddc86ca6fe49c3.tar.gz vaultwarden-21bc3bfd538157b341191c9caeddc86ca6fe49c3.zip |
group support
Diffstat (limited to 'src/api/mod.rs')
-rw-r--r-- | src/api/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/mod.rs b/src/api/mod.rs index 7bff978b..49283dd2 100644 --- a/src/api/mod.rs +++ b/src/api/mod.rs @@ -33,6 +33,7 @@ pub type EmptyResult = ApiResult<()>; type JsonUpcase<T> = Json<util::UpCase<T>>; type JsonUpcaseVec<T> = Json<Vec<util::UpCase<T>>>; +type JsonVec<T> = Json<Vec<T>>; // Common structs representing JSON data received #[derive(Deserialize)] |