We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a966cc9 commit ff897baCopy full SHA for ff897ba
api/routes/applications.py
@@ -70,7 +70,7 @@ async def create_application(self, request: Request) -> Response:
70
name: str = data['name']
71
description: str = data['description']
72
except Exception as e:
73
- logger.debug(f'Received bad JSON in "/api/applications/create": {e}')
+ logger.debug(f'Received bad JSON in "/applications/create": {e}')
74
return JSONResponse({'error': 'Bad POST JSON Body.'}, status_code=400)
75
76
if len(name) < 3 or len(name) > 32:
0 commit comments