remove retrofix

pull/222/head
Aevann 2024-02-11 13:04:54 +02:00
parent b08839569d
commit f15743235c
1 changed files with 0 additions and 12 deletions

View File

@ -2243,15 +2243,3 @@ def unmark_effortpost(pid, v):
send_repeatable_notification(p.author_id, f":marseyitsover: @{v.username} (a site admin) has unmarked [{p.title}](/post/{p.id}) as an effortpost. {coins} coins have been deducted from you. :!marseyitsover:")
return {"message": "Post has been unmarked as an effortpost!"}
@app.get("/retrofix")
@limiter.limit('1/day')
@limiter.limit('1/day', key_func=get_ID)
@admin_level_required(5)
def retrofix(v):
groups = g.db.query(Group)
for group in groups:
group.owner_id = group.memberships[0].user_id
g.db.add(group)
return 'nig'