diff --git a/files/routes/admin.py b/files/routes/admin.py index ce2a5bea0d..b42cf915d6 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -25,22 +25,22 @@ else: cc = "country club" @admin_level_required(3) 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, - parent_submission=None, - distinguish_level=6, - body_html=text_html) - g.db.add(new_comment) - g.db.flush() + # new_comment = Comment(author_id=AUTOJANNY_ID, + # parent_submission=None, + # distinguish_level=6, + # body_html=text_html) + # g.db.add(new_comment) + # g.db.flush() users = (x[0] for x in g.db.query(User.id).all()) for u in users: print(u) - notif = Notification(comment_id=new_comment.id, user_id=u) - g.db.add(notif) + # notif = Notification(comment_id=new_comment.id, user_id=u) + # g.db.add(notif) - g.db.commit() + # g.db.commit() return "sex" @app.get("/distribute/")