Skip to content

Commit f4c9408

Browse files
committed
Updated status endpoint function name.
1 parent 825cad9 commit f4c9408

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/app/routers/status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99

1010
@router.get("", response_model=Status)
11-
async def add_thumbnail():
11+
async def get_status():
1212
return Status()

frontend/src/openapi/v2/services/StatusService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import { request as __request } from '../core/request';
88
export class StatusService {
99

1010
/**
11-
* Add Thumbnail
11+
* Get Status
1212
* @returns Status Successful Response
1313
* @throws ApiError
1414
*/
15-
public static addThumbnailApiV2StatusGet(): CancelablePromise<Status> {
15+
public static getStatusApiV2StatusGet(): CancelablePromise<Status> {
1616
return __request({
1717
method: 'GET',
1818
path: `/api/v2/status`,

0 commit comments

Comments
 (0)