From 6d171823ee239997e0248b572d0a0704243b0f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Loi=CC=88c=20Delmaire?= Date: Mon, 23 Oct 2023 08:22:49 +0200 Subject: [PATCH] DummyJob --- app/jobs/dummy_job.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/jobs/dummy_job.rb diff --git a/app/jobs/dummy_job.rb b/app/jobs/dummy_job.rb new file mode 100644 index 0000000000..1c45d92790 --- /dev/null +++ b/app/jobs/dummy_job.rb @@ -0,0 +1,5 @@ +class DummyJob < ApplicationJob + def perform + User.count + end +end