aboutsummaryrefslogtreecommitdiff
path: root/src/api/admin/bucket.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/admin/bucket.rs')
-rw-r--r--src/api/admin/bucket.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/api/admin/bucket.rs b/src/api/admin/bucket.rs
index 16e9c174..6901f139 100644
--- a/src/api/admin/bucket.rs
+++ b/src/api/admin/bucket.rs
@@ -369,20 +369,6 @@ pub async fn handle_delete_bucket(
.body(Body::empty())?)
}
-pub async fn handle_bucket_allow_key(
- garage: &Arc<Garage>,
- req: Request<Body>,
-) -> Result<Response<Body>, Error> {
- handle_bucket_change_key_perm(garage, req, true).await
-}
-
-pub async fn handle_bucket_deny_key(
- garage: &Arc<Garage>,
- req: Request<Body>,
-) -> Result<Response<Body>, Error> {
- handle_bucket_change_key_perm(garage, req, false).await
-}
-
pub async fn handle_bucket_change_key_perm(
garage: &Arc<Garage>,
req: Request<Body>,