restrucuted blueprint layouts and added more skeleton api routes to be used from the frontend

This commit is contained in:
Oscar Cao
2025-01-23 23:49:08 +00:00
parent ced77e718a
commit be2248fcad
3 changed files with 29 additions and 14 deletions

View File

@@ -10,20 +10,6 @@ def hls(stream_id):
#--------------------------------------------------------
@main_bp.route('/get_login_status')
def get_login_status():
logged_in = False
"""
Returns whether the user is logged in or not
"""
return {"logged_in": logged_in}
@main_bp.route('/authenticate_user')
def authenticate_user():
"""
Authenticates the user
"""
return {"authenticated": True}