2.3.1 / 2020-02-17
==================

**General**
* User confirmation emails now have the correct URL format
This commit is contained in:
Kevin Chung
2020-02-17 20:07:17 -05:00
committed by GitHub
parent 22c132358e
commit 7cd8d90e0c
6 changed files with 14 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ auth = Blueprint("auth", __name__)
@auth.route("/confirm", methods=["POST", "GET"])
@auth.route("/confirm/<data>", methods=["GET"])
@auth.route("/confirm/<data>", methods=["POST", "GET"])
@ratelimit(method="POST", limit=10, interval=60)
def confirm(data=None):
if not get_config("verify_emails"):