redirect old /hosted to new /room
This commit is contained in:
parent
85481d7321
commit
5c21538553
|
@ -192,6 +192,9 @@ def hostRoom(room: UUID):
|
||||||
|
|
||||||
return render_template("hostRoom.html", room=room)
|
return render_template("hostRoom.html", room=room)
|
||||||
|
|
||||||
|
@app.route('/hosted/<suuid:room>', methods=['GET', 'POST'])
|
||||||
|
def hostRoomRedirect(room: UUID):
|
||||||
|
return redirect(url_for("hostRoom", room=room))
|
||||||
|
|
||||||
@app.route('/favicon.ico')
|
@app.route('/favicon.ico')
|
||||||
def favicon():
|
def favicon():
|
||||||
|
|
Loading…
Reference in New Issue