forked from Deuxfleurs/garage
Fix forgotten flag
This commit is contained in:
parent
87121dce9d
commit
b76d0580a0
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ pub async fn handle_list_buckets(garage: &Garage, api_key: &Key) -> Result<Respo
|
|||
.authorized_buckets
|
||||
.items()
|
||||
.iter()
|
||||
.filter(|(_, perms)| perms.allow_read || perms.allow_write)
|
||||
.filter(|(_, perms)| perms.allow_read || perms.allow_write || perms.allow_owner)
|
||||
.map(|(id, _)| *id)
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue