UPDATE: Removed deprecated routes

This commit is contained in:
JustIceO7
2025-02-01 23:15:21 +00:00
parent 7d11e81581
commit 80609eceff
2 changed files with 0 additions and 21 deletions

View File

@@ -160,18 +160,6 @@ def get_followed_streamers():
live_following_streams = followed_streamers(user_id)
return live_following_streams
#admin priveledges its probably better to not have this as a route instead just an internal function
@stream_bp.route('/save_stream_thumbnail/<int:streamer_id>', methods=['POST'])
def stream_thumbnail_snapshot(streamer_id):
"""
Function to be called periodically which saves the current live stream as an img to be used for the thumbnail to be displayed
will be asking streamer guy how to get the picture
will also be asking myself how to do this - Dylan
will be saved as a png stream_id.streamer_id.png or similar to create a unique image
"""
return
## RTMP Server Routes
@stream_bp.route("/publish_stream", methods=["POST"])
def publish_stream():