updating flask routes

main
Mark Cotton 2023-08-29 12:43:32 -05:00
parent c49825193c
commit 2bc3b2a8d1
1 changed files with 15 additions and 13 deletions

28
app.py
View File

@ -59,19 +59,21 @@ Session(app)
# $ flask routes -s rule # $ flask routes -s rule
# INFO:root:Using EagleEyev3 version 0.0.15 # INFO:root:Using EagleEyev3 version 0.0.17
# Endpoint Methods Rule # Endpoint Methods Rule
# --------------------- ------- --------------------------- # --------------------- ------- --------------------------------------------
# index GET / # index GET /
# accounts GET /accounts # accounts GET /accounts
# camera_live_preivew GET /camera/<esn>/preview # camera_live_preivew GET /camera/<esn>/preview
# camera__preivew_image GET /camera/<esn>/preview_image # camera__preivew_image GET /camera/<esn>/preview_image
# cameras GET /cameras # camera_video_player GET /camera/<esn>/video_player/<start_timestamp>
# landing GET /landing # camera_list_of_videos GET /camera/<esn>/videos
# login_callback GET /login_callback # cameras GET /cameras
# logout GET /logout # landing GET /landing
# static GET /static/<path:filename> # login_callback GET /login_callback
# switch_account GET /switch_account # logout GET /logout
# static GET /static/<path:filename>
# switch_account GET /switch_account
def login_required(f): def login_required(f):