remotes/1693045480750635534/spooky-22
Aevann1 2021-12-17 20:18:55 +02:00
parent cee9e335b9
commit f1fb13acf5
1 changed files with 10 additions and 10 deletions

View File

@ -25,22 +25,22 @@ else: cc = "country club"
@admin_level_required(3) @admin_level_required(3)
def notify(v): def notify(v):
# text_html = sanitize(CustomRenderer().render(mistletoe.Document("IMPORTANT: https://rdrama.net/post/30782/psa-make-sure-you-know-your"))) text_html = sanitize(CustomRenderer().render(mistletoe.Document("IMPORTANT: https://rdrama.net/post/30782/psa-make-sure-you-know-your")))
# new_comment = Comment(author_id=AUTOJANNY_ID, new_comment = Comment(author_id=AUTOJANNY_ID,
# parent_submission=None, parent_submission=None,
# distinguish_level=6, distinguish_level=6,
# body_html=text_html) body_html=text_html)
# g.db.add(new_comment) g.db.add(new_comment)
# g.db.flush() g.db.flush()
print('wtf') print('wtf')
users = g.db.query(User.id).all() users = g.db.query(User.id).all()
for u in users: for u in users:
print(u[0]) print(u[0])
# notif = Notification(comment_id=new_comment.id, user_id=u) notif = Notification(comment_id=new_comment.id, user_id=u)
# g.db.add(notif) g.db.add(notif)
# g.db.commit() g.db.commit()
return "sex" return "sex"
@app.get("/distribute/<cid>") @app.get("/distribute/<cid>")