feat: add ticket snooze/schedule#7
Merged
Merged
Conversation
Add TicketSnoozeService with snooze_ticket() and unsnooze_ticket() methods that store snooze metadata in a new ticket_meta table, change ticket status to 'snoozed', and restore the previous status on wake. Includes WP-Cron job (every minute) to auto-wake expired snoozes, REST API endpoints for snooze/unsnooze, and comprehensive PHPUnit tests.
Merge main branch, resolve API bootstrap conflict to include both snooze and split controllers. Fix get_snoozed_ticket_ids to use wpdb->esc_like() for the SHOW TABLES LIKE check. Apply Pint fixes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TicketSnoozeServicewithsnooze_ticket()andunsnooze_ticket()methodsticket_metatable storessnoozed_until,snoozed_by, andstatus_before_snoozeescalated_check_snoozed_tickets) runs every minute to auto-wake expired snoozesPOST /tickets/{id}/snoozeandPOST /tickets/{id}/unsnoozeget_snoozed_ticket_ids()for excluding snoozed tickets from default queriesTest plan
get_snoozed_ticket_ids()returns correct IDs