"moved into cc" -> "marked as cc"

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-11-14 07:49:14 +02:00
parent e83be235ba
commit ac8c1d524d
1 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ def club_post(pid, v):
)
g.db.add(ma)
message = f"@{v.username} (Admin) has moved [{post.title}]({post.shortlink}) to the {CC_TITLE}!"
message = f"@{v.username} (Admin) has marked [{post.title}]({post.shortlink}) as {CC_TITLE}!"
send_repeatable_notification(post.author_id, message)
return {"message": f"Post has been moved to the {CC_TITLE}!"}
return {"message": f"Post has been marked as {CC_TITLE}!"}
@app.post("/unclub_post/<pid>")
@auth_required
@ -71,10 +71,10 @@ def unclub_post(pid, v):
)
g.db.add(ma)
message = f"@{v.username} (Admin) has removed [{post.title}]({post.shortlink}) from the {CC_TITLE}!"
message = f"@{v.username} (Admin) has unmarked [{post.title}]({post.shortlink}) as {CC_TITLE}!"
send_repeatable_notification(post.author_id, message)
return {"message": f"Post has been removed from the {CC_TITLE}!"}
return {"message": f"Post has been unmarked as {CC_TITLE}!"}
@app.post("/publish/<pid>")