Replace create_item_in_table placeholder with proper table-specific endpoint logic
#30
Labels
No Label
ai-changes-requested
ai-pr-opened
ai-reviewed
ai-reviewing
ai-working
in-next-release
status/in-progress
status/pr-open
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/major-domo-v2#30
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
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?
Description
services/base_service.py:510-531— Contains comment: "This is a placeholder - real implementation would need table-specific endpoints". Blindly POSTs to whatevertable_nameis passed. Used bycustom_commands_servicefor creating creator records.File Locations
services/base_service.py:510-531Labels
tech-debt, enhancement, todo
Priority
low
PR #69 opened: #69
Fix approach: Removed the
create_item_in_tableplaceholder fromBaseServiceand replaced the single call site inCustomCommandsService.get_or_create_creatorwith a directclient.post("custom_commands/creators", creator_data)— the same pattern already used by_update_creator_statsand_update_creator_infofor other creator sub-endpoint operations.