Added dashboard per user functionality

This commit is contained in:
2025-04-16 08:50:52 +02:00
parent bc9b26a205
commit f53d50ef7a
4 changed files with 14 additions and 17 deletions

10
seed.py
View File

@@ -25,14 +25,8 @@ new_users = [
]
new_services = [
Service(
name="test123",
url="http://google.com",
),
Service(
name="Netflix",
url="https://www.netflix.com",
),
Service(name="test123", url="http://google.com", user_id=1),
Service(name="Netflix", url="https://www.netflix.com", user_id=2),
]
with app.app_context():