forked from MarseyWorld/MarseyWorld
fix print and add more
parent
9bdafda769
commit
740cddc799
|
@ -448,17 +448,20 @@ def _cleanup_videos():
|
|||
Post.deleted_utc == 0,
|
||||
)
|
||||
for post in unpublished_drafts:
|
||||
print(f'draft: {media_usage.filename} - {media_usage.post_id} - {media_usage.comment_id}', flush=True)
|
||||
print(f'draft post: {post.id}', flush=True)
|
||||
post.deleted_utc = time.time()
|
||||
g.db.add(post)
|
||||
for media_usage in post.media_usages:
|
||||
print(f'media usage: {media_usage.id}', flush=True)
|
||||
media_usage.deleted_utc = post.deleted_utc
|
||||
g.db.add(media_usage)
|
||||
|
||||
for comment in post.comments:
|
||||
print(f'draft comment: {comment.id}', flush=True)
|
||||
comment.deleted_utc = time.time()
|
||||
g.db.add(comment)
|
||||
for media_usage in comment.media_usages:
|
||||
print(f'media usage: {media_usage.id}', flush=True)
|
||||
media_usage.deleted_utc = comment.deleted_utc
|
||||
g.db.add(media_usage)
|
||||
|
||||
|
|
Loading…
Reference in New Issue