FEATURE: Add daily job to check for new features
This commit is contained in:
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
|
Loading…
Reference in New Issue