Skip to content

Commit

Permalink
Merge pull request #28 from michael-o/issues/27
Browse files Browse the repository at this point in the history
Don't enforce strict slashes (#27)
  • Loading branch information
ahebrank authored Jan 17, 2023
2 parents 0c60bc7 + 4ef86ac commit e0f4d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gwh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
whitelist_ip = None
repos = None

@app.route("/", methods=['GET', 'POST'])
@app.route("/", methods=['GET', 'POST'], strict_slashes=False)
def index():
if request.method == "GET":
return 'OK'
Expand Down

0 comments on commit e0f4d33

Please sign in to comment.