Skip to content

Commit

Permalink
Updated status endpoint function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarini committed Nov 13, 2023
1 parent 825cad9 commit f4c9408
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/app/routers/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@


@router.get("", response_model=Status)
async def add_thumbnail():
async def get_status():
return Status()
4 changes: 2 additions & 2 deletions frontend/src/openapi/v2/services/StatusService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { request as __request } from '../core/request';
export class StatusService {

/**
* Add Thumbnail
* Get Status
* @returns Status Successful Response
* @throws ApiError
*/
public static addThumbnailApiV2StatusGet(): CancelablePromise<Status> {
public static getStatusApiV2StatusGet(): CancelablePromise<Status> {
return __request({
method: 'GET',
path: `/api/v2/status`,
Expand Down

0 comments on commit f4c9408

Please sign in to comment.