Adds start of redraft view

This commit is contained in:
Mouse Reeve
2021-04-03 12:30:18 -07:00
parent e51a287cd3
commit c5b2489330
2 changed files with 27 additions and 10 deletions

View File

@ -1,18 +1,10 @@
""" Handle user activity """
from django.db import transaction
from django.utils import timezone
from bookwyrm import models
from bookwyrm.sanitize_html import InputHtmlParser
def delete_status(status):
""" replace the status with a tombstone """
status.deleted = True
status.deleted_date = timezone.now()
status.save()
def create_generated_note(user, content, mention_books=None, privacy="public"):
""" a note created by the app about user activity """
# sanitize input html