Skip to content

Commit f5ae28f

Browse files
more renaming
1 parent 1f7b86f commit f5ae28f

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@
131131
}
132132
],
133133
"results": {},
134-
"generated_at": "2026-02-26T22:44:12Z"
134+
"generated_at": "2026-02-27T21:39:45Z"
135135
}

docs/authorization.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ authz:
6363
- name: gen3-workflow
6464
subresources:
6565
- name: tasks
66+
- name: storage
6667

6768
policies:
6869
- id: gen3_workflow_user

docs/openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -504,19 +504,19 @@ paths:
504504
bucket
505505
506506
and authz.'
507-
operationId: get_storage_info_2
507+
operationId: storage_setup_2
508508
responses:
509509
'200':
510510
content:
511511
application/json:
512512
schema:
513513
additionalProperties: true
514-
title: Response Get Storage Info 2
514+
title: Response Storage Setup 2
515515
type: object
516516
description: Successful Response
517517
security:
518518
- HTTPBearer: []
519-
summary: Get Storage Info
519+
summary: Storage Setup
520520
tags:
521521
- Storage
522522
/storage/setup:
@@ -527,19 +527,19 @@ paths:
527527
bucket
528528
529529
and authz.'
530-
operationId: get_storage_info
530+
operationId: storage_setup
531531
responses:
532532
'200':
533533
content:
534534
application/json:
535535
schema:
536536
additionalProperties: true
537-
title: Response Get Storage Info
537+
title: Response Storage Setup
538538
type: object
539539
description: Successful Response
540540
security:
541541
- HTTPBearer: []
542-
summary: Get Storage Info
542+
summary: Storage Setup
543543
tags:
544544
- Storage
545545
/storage/user-bucket:

gen3workflow/routes/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
@router.get("/info/", status_code=HTTP_200_OK, include_in_schema=False)
2121
@router.get("/setup", status_code=HTTP_200_OK)
2222
@router.get("/setup/", status_code=HTTP_200_OK, include_in_schema=False)
23-
async def get_storage_info(request: Request, auth=Depends(Auth)) -> dict:
23+
async def storage_setup(request: Request, auth=Depends(Auth)) -> dict:
2424
"""
2525
Return details about the current user's storage setup.
2626
This endpoint also serves as a mandatory "first time setup" for the user's bucket

0 commit comments

Comments
 (0)