Skip to content

Commit

Permalink
fixing endpoint name
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Mar 2, 2023
1 parent ebd49be commit 0969a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def get_terria_map_catalog_data(grid_type: Union[str, None] = Query(defaul
return JSONResponse(content=ret_val, status_code=status_code, media_type="application/json")


@APP.get('/get_terria_map_data_file', status_code=200, response_model=None)
@APP.get('/get_ui_data_file', status_code=200, response_model=None)
async def get_terria_map_catalog_data_file(file_name: Union[str, None] = Query(default='apsviz.json'),
grid_type: Union[str, None] = Query(default=None), event_type: Union[str, None] = Query(default=None),
instance_name: Union[str, None] = Query(default=None), met_class: Union[str, None] = Query(default=None),
Expand Down

0 comments on commit 0969a58

Please sign in to comment.