We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58553cd commit a0f350eCopy full SHA for a0f350e
src/create_db.py
@@ -2,7 +2,7 @@
2
3
from FlaskRTBCTF import create_app, db, bcrypt
4
from FlaskRTBCTF.models import User, Score, Notification
5
-from FlaskRTBCTF.config import ctfname
+from FlaskRTBCTF.config import organization
6
7
app = create_app()
8
@@ -23,7 +23,7 @@
23
db.session.add(admin_score)
24
25
notif = Notification(
26
- title=f"Welcome to {ctfname}",
+ title=f"Welcome to {organization['ctfname']}",
27
body = "The CTF is live now. Please read rules!"
28
)
29
db.session.add(notif)
0 commit comments