mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
880462a41c
* FEATURE: disaply out of date themes on admin dashboard * Update copy
17 lines
366 B
Ruby
17 lines
366 B
Ruby
module Jobs
|
|
class CheckOutOfDateThemes < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
target_themes = RemoteTheme
|
|
.joins("JOIN themes ON themes.remote_theme_id = remote_themes.id")
|
|
.where.not(remote_url: "")
|
|
|
|
target_themes.each do |remote|
|
|
remote.update_remote_version
|
|
remote.save!
|
|
end
|
|
end
|
|
end
|
|
end
|