feat: add multi-ID delete support with per-ID results #63
Reference in New Issue
Block a user
Delete Branch "fix/issue-47"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Implements multi-ID delete support for issue #47:
/delete 1 2 3deletes multiple bounties at oncedeleted_attimestampChanges
core/services.py
delete_bounties()method that returns individual results per ID:"deleted"- successfully soft-deleted"not_found"- bounty does not exist"permission_denied"- user is not adminapps/telegram-bot/commands.py
cmd_delete()to accept multiple IDstests/test_services.py
delete_bounties()methodFixes #47