Finalize adventure puzzle room
This commit is contained in:
parent
da065aa76f
commit
23d3318be1
1 changed files with 3 additions and 3 deletions
|
|
@ -9,9 +9,9 @@ def get_db():
|
|||
db.row_factory = sqlite3.Row
|
||||
return db
|
||||
|
||||
@app.route("/")
|
||||
@app.route("/app")
|
||||
@app.route("/app/")
|
||||
@app.route("/", methods=["GET", "POST"])
|
||||
@app.route("/app", methods=["GET", "POST"])
|
||||
@app.route("/app/", methods=["GET", "POST"])
|
||||
def start():
|
||||
room_id = request.args.get("room", type=int)
|
||||
if room_id is None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue