mirror of
https://github.com/discourse/discourse.git
synced 2026-08-03 01:49:44 -05:00
FEATURE: Add daily job to check for new features
This commit is contained in:
committed by
Alan Guo Xiang Tan
parent
736b4137cc
commit
49e97279c7
@@ -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
|
||||
Reference in New Issue
Block a user