From 0f94ba96bd39e48f5f7720ee62b028e2584ff96d Mon Sep 17 00:00:00 2001 From: horus Date: Mon, 3 Jan 2022 14:55:54 +0100 Subject: Add queue monitor --- config/queue-monitor.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 config/queue-monitor.php (limited to 'config') diff --git a/config/queue-monitor.php b/config/queue-monitor.php new file mode 100644 index 0000000..aec12cd --- /dev/null +++ b/config/queue-monitor.php @@ -0,0 +1,31 @@ + 'queue_monitor', + + /* + * Set the model used for monitoring. + * If using a custom model, be sure to implement the + * romanzipp\QueueMonitor\Models\Contracts\MonitorContract + * interface or extend the base model. + */ + 'model' => \romanzipp\QueueMonitor\Models\Monitor::class, + + /* + * The optional UI settings. + */ + 'ui' => [ + /* + * Set the monitored jobs count to be displayed per page. + */ + 'per_page' => 35, + + /* + * Show custom data stored on model + */ + 'show_custom_data' => true, + ], +]; -- cgit v1.2.3