Marking 1.0.0 (#196)

* Use <int:xxx> in routes to prevent some errors 500 (#192)

* Use first_or_404() to prevent some errors 500 (#193)

* Add a populating script for awards. (#191)

* Creating upload_file util

* Marking 1.0.0 in __init__ and starting database migrations

* Upgrading some more HTML

* Adding CHANGELOG.md
This commit is contained in:
Kevin Chung
2017-01-24 23:06:16 -05:00
committed by GitHub
parent 01cb189b22
commit 935027c55d
21 changed files with 482 additions and 110 deletions

View File

@@ -173,7 +173,7 @@ def test_user_get_profile():
def test_user_get_logout():
"""Can a registered user can load /logout"""
"""Can a registered user load /logout"""
app = create_ctfd()
with app.app_context():
register_user(app)
@@ -185,7 +185,7 @@ def test_user_get_logout():
def test_user_get_reset_password():
"""Can an unregistered user can load /reset_password"""
"""Can an unregistered user load /reset_password"""
app = create_ctfd()
with app.app_context():
register_user(app)