Added services idk

This commit is contained in:
2025-04-15 10:41:00 +02:00
parent a1e95bd148
commit cae4bc7b5b
2 changed files with 4 additions and 1 deletions

View File

@@ -11,7 +11,9 @@ new_strikers = [
"""
new_user = User(username="admin", password=generate_password_hash("admin"))
new_user = User(
username="admin", password=generate_password_hash("admin"), is_admin=True
)
new_services = Service(name="test123", url="http://google.com")
with app.app_context():