FEATURE: Add daily job to check for new features

This commit is contained in:
Penar Musaraj
2021-02-01 10:31:44 +08:00
committed by Alan Guo Xiang Tan
parent 736b4137cc
commit 49e97279c7
+13
View File
@@ -0,0 +1,13 @@
# frozen_string_literal: true
module Jobs
class CheckNewFeatures < ::Jobs::Scheduled
every 1.day
def execute(args)
DiscourseUpdates.perform_new_feature_check
end
end
end