mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 02:53:10 +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
|