mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 03:43:45 +08:00
14 lines
196 B
Ruby
14 lines
196 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
|
||
|
class CheckNewFeatures < ::Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
DiscourseUpdates.perform_new_feature_check
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|