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
# INFO:root:Using EagleEyev3 version 0.0.15
# Endpoint Methods Rule
# --------------------- ------- ---------------------------
# index GET /
# accounts GET /accounts
# camera_live_preivew GET /camera/<esn>/preview
# camera__preivew_image GET /camera/<esn>/preview_image
# cameras GET /cameras
# landing GET /landing
# login_callback GET /login_callback
# logout GET /logout
# static GET /static/<path:filename>
# switch_account GET /switch_account
# INFO:root:Using EagleEyev3 version 0.0.17
# Endpoint Methods Rule
# --------------------- ------- --------------------------------------------
# index GET /
# accounts GET /accounts
# camera_live_preivew GET /camera/<esn>/preview
# camera__preivew_image GET /camera/<esn>/preview_image
# camera_video_player GET /camera/<esn>/video_player/<start_timestamp>
# camera_list_of_videos GET /camera/<esn>/videos
# cameras GET /cameras
# landing GET /landing
# login_callback GET /login_callback
# logout GET /logout
# static GET /static/<path:filename>
# switch_account GET /switch_account
def login_required(f):