Skip to content

Commit 2462ed0

Browse files
authored
release version 2.0.0
1 parent f877cb5 commit 2462ed0

File tree

3 files changed

+2395
-2443
lines changed

3 files changed

+2395
-2443
lines changed

api/src/api/app/apis/scenarios_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ async def list_scenarios() -> List[ReducedScenario]:
148148
},
149149
tags=["Authentication"],
150150
)
151-
async def create_protected_scenario(request: Request) -> str:
151+
async def return_user(request: Request) -> str:
152152
"""Display authenticated user."""
153153
return f'Authenticated user: {request.state.user}'
154154

api/src/api/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
config = Config(".env")
66

77
PROJECT_NAME = "ESID Backend Interface"
8-
VERSION = "1.1.0"
8+
VERSION = "2.0.0"
99
API_PATH_PREFIX = config("API_PATH_PREFIX", cast=str, default="")
1010

1111
SECRET_KEY = config("SECRET_KEY", cast=Secret, default="CHANGEME")

0 commit comments

Comments
 (0)