mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04:00
fix: Fixing the OpenAPI Spec and the Call to delete a shared recipe. (#5537)
This commit is contained in:
@@ -46,5 +46,5 @@ class RecipeSharedController(BaseUserController):
|
|||||||
return self.mixins.get_one(item_id)
|
return self.mixins.get_one(item_id)
|
||||||
|
|
||||||
@router.delete("/{item_id}")
|
@router.delete("/{item_id}")
|
||||||
def delete_one(self, item_id: UUID4 | None = None) -> None:
|
def delete_one(self, item_id: UUID4) -> None:
|
||||||
return self.mixins.delete_one(item_id)
|
return self.mixins.delete_one(item_id)
|
||||||
|
|||||||
Reference in New Issue
Block a user