Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix bug in delete examples #105

Merged
merged 1 commit into from
Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion backend/server/api/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ def delete(
user_id: UUID = Depends(UserToken),
) -> None:
"""Endpoint to delete an example."""
extractor_id = session.query(Example).filter_by(uuid=str(uuid)).first().extractor_id
example = session.query(Example).filter_by(uuid=str(uuid)).first()
if example is None:
raise HTTPException(status_code=404, detail="Example not found.")
extractor_id = example.extractor_id
if not validate_extractor_owner(session, extractor_id, user_id):
raise HTTPException(status_code=404, detail="Extractor not found for owner.")
session.query(Example).filter_by(uuid=str(uuid)).delete()
Expand Down
Loading