fd
This commit is contained in:
parent
292d432e60
commit
d93d51b07e
1 changed files with 10 additions and 6 deletions
|
@ -38,12 +38,16 @@ def dp(v):
|
|||
@app.route("/dramacoins/comments", methods=["GET"])
|
||||
@admin_level_required(6)
|
||||
def dc(v):
|
||||
for p in g.db.query(Comment).options(lazyload('*')).all():
|
||||
print(p.id)
|
||||
if p.author:
|
||||
print(p.author.username)
|
||||
p.author.dramacoins += p.upvotes + p.downvotes - 1
|
||||
g.db.add(p.author)
|
||||
count = g.db.query(Comment).options(lazyload('*')).count()
|
||||
print(count)
|
||||
count = g.db.query(Comment).options(lazyload('*')).filter(Comment.parent_submission is not None).count()
|
||||
print(count)
|
||||
#for p in g.db.query(Comment).options(lazyload('*')).filter_by().all():
|
||||
#print(p.id)
|
||||
#if p.author:
|
||||
#print(p.author.username)
|
||||
#p.author.dramacoins += p.upvotes + p.downvotes - 1
|
||||
#g.db.add(p.author)
|
||||
return "sex"
|
||||
|
||||
@app.route("/admin/shadowbanned", methods=["GET"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue