mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-20 13:33:39 -07:00
fix: Fixing the OpenAPI Spec and the Call to delete a shared recipe. (#5537)
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
This commit is contained in:
parent
038fbd38ef
commit
69488bd6df
1 changed files with 1 additions and 1 deletions
|
@ -46,5 +46,5 @@ class RecipeSharedController(BaseUserController):
|
|||
return self.mixins.get_one(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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue