rosa-build/app/jobs/autostart_builds_once_every...

8 lines
189 B
Ruby
Raw Normal View History

2016-05-22 16:54:18 +01:00
class AutostartBuildsOnceEveryTwelveHoursJob
@queue = :low
def self.perform
Product.autostart_iso_builds_once_a_12_hours
Project.autostart_build_lists_once_a_12_hours
end
end