forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-17 10:24:44 +02:00
parent ce5cee3570
commit d58aa86dd6
1 changed files with 3 additions and 2 deletions

View File

@ -12,8 +12,9 @@ def slash_post():
@app.get("/testing")
def testing():
notifications = g.db.query(Notification).options(lazyload('*')).join(Notification.comment).limit(26)
notifications2 = g.db.query(Notification).join(Notification.comment).limit(26)
notifications = g.db.query(Notification).options(lazyload('*'))
print("FUCK\nFUCK\nFUCK")
notifications2 = g.db.query(Notification)
return "sex"
@app.get("/notifications")