Skip to content

Commit

Permalink
fix: fixed config json string encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
ShyAssassin committed Jan 10, 2024
1 parent 3c67478 commit 832e4a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TrackingBackend/app/etvr.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ def add_routes(self) -> None:
self.router.add_api_route(
name="Return Config",
path="/etvr/config",
endpoint=self.config.model_dump_json,
endpoint=self.config.model_dump,
methods=["GET"],
tags=["Config"],
description="""
Return the currently loadeed config
Return the currently loaded config
""",
)
self.router.add_api_route(
Expand Down

0 comments on commit 832e4a5

Please sign in to comment.