Fixing home page 404
This commit is contained in:
Родитель
04c752d550
Коммит
8765dfb6bf
|
@ -50,6 +50,9 @@ def allowed_file(filename):
|
||||||
return '.' in filename and \
|
return '.' in filename and \
|
||||||
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
|
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
|
||||||
|
|
||||||
|
@app.route('/', strict_slashes=False)
|
||||||
|
def api_home():
|
||||||
|
return redirect('/schema/telemetry')
|
||||||
|
|
||||||
@app.route('/__version__', strict_slashes=False)
|
@app.route('/__version__', strict_slashes=False)
|
||||||
def api_version():
|
def api_version():
|
||||||
|
|
Загрузка…
Ссылка в новой задаче