feat: Change Recipe Owner (#4355)

Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
This commit is contained in:
Michael Genson
2024-10-19 04:33:32 -05:00
committed by GitHub
parent 60ea83d737
commit 1dc7b24146
11 changed files with 187 additions and 14 deletions

View File

@@ -138,6 +138,11 @@ class EventRecipeData(EventDocumentDataBase):
recipe_slug: str
class EventRecipeBulkData(EventDocumentDataBase):
document_type: EventDocumentType = EventDocumentType.recipe
recipe_slugs: list[str]
class EventRecipeBulkReportData(EventDocumentDataBase):
document_type: EventDocumentType = EventDocumentType.recipe_bulk_report
report_id: UUID4