discourse/app/jobs/scheduled/check_out_of_date_themes.rb
Osama Sayegh 880462a41c FEATURE: display out of date themes on admin dashboard
* FEATURE: disaply out of date themes on admin dashboard

* Update copy
2018-08-03 09:53:48 +10:00

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