feat: Add comments to adoption notices

This commit is contained in:
2024-05-30 13:58:24 +02:00
parent a16098f648
commit e77a936c30
8 changed files with 132 additions and 10 deletions

View File

@@ -6,7 +6,8 @@ from django.core.files import File
from fellchensammlung import baker_recipes
from model_bakery import baker
from fellchensammlung.models import AdoptionNotice, Species, Animal, Image, ModerationAction, User, Member, Rule, Report
from fellchensammlung.models import AdoptionNotice, Species, Animal, Image, ModerationAction, User, Member, Rule, \
Report, Comment
class Command(BaseCommand):
@@ -24,7 +25,6 @@ class Command(BaseCommand):
except AdoptionNotice.DoesNotExist:
pass
rescue1 = baker.make_recipe(
'fellchensammlung.rescue_org'
)
@@ -88,5 +88,12 @@ class Command(BaseCommand):
mod1.trust_level = Member.MODERATOR
mod1.save()
comment1 = baker.make(Comment, user=admin1, text="This is a comment", adoption_notice=adoption1)
comment2 = baker.make(Comment,
user=mod1,
text="This is a reply",
adoption_notice=adoption1,
reply_to=comment1)
def handle(self, *args, **options):
self.populate_db()