Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gen3workflow/routes/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def get_storage_info(request: Request, auth=Depends(Auth)) -> dict:

@router.delete("/user-bucket", status_code=HTTP_204_NO_CONTENT)
async def delete_user_bucket(request: Request, auth=Depends(Auth)) -> None:
await auth.authorize("delete", ["/services/workflow/user-bucket"])
await auth.authorize("delete", ["/services/workflow/gen3-workflow/user-bucket"])

token_claims = await auth.get_token_claims()
user_id = token_claims.get("sub")
Expand Down
Loading