feat: Recurring Tasks page#15
Merged
Merged
Conversation
Exposes SolidQueue::RecurringTask via a new /jobs/recurring_tasks page showing key, cron schedule, job class or command, queue, next run time, last run time, and static/dynamic badge. Eager loads recurring_executions to avoid N+1 when computing last_enqueued_time. - RecurringTasksController with index action - Nav link between Failed and Processes - sqd-badge--static and sqd-badge--dynamic CSS variants - 6 request specs, suite stays at 100% coverage Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Add Recurring stat card (cyan) between Queues and Processes to match nav order - Add "View recurring tasks" to Quick Links - Reduce stat grid minmax from 150px to 128px so all 8 cards fit in one row Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #15 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 9 10 +1
Lines 127 131 +4
=========================================
+ Hits 127 131 +4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
/jobs/recurring_taskspage exposingSolidQueue::RecurringTask— previously completely hidden from the UIDetails
Recurring Tasks page shows key, cron schedule, job class or command (with arguments and optional description), queue, next run time, last run time, and a Static/Dynamic badge. Eager loads
recurring_executionsto computelast_enqueued_timewithout N+1 queries.Dashboard adds a Recurring stat card and a "View recurring tasks" Quick Link. Stat grid minimum cell width reduced from 150px → 128px so all 8 cards fit in a single row.
New CSS:
sqd-badge--static(green) andsqd-badge--dynamic(purple) badge variants.Test plan
/jobs/recurring_tasksrenders with tasks present and shows empty state when none configured🤖 Generated with Claude Code