11 lines
196 B
Ruby
11 lines
196 B
Ruby
module GithubRepos
|
|
class UpdateLatestWorker
|
|
include Sidekiq::Job
|
|
|
|
sidekiq_options queue: :medium_priority, retry: 10
|
|
|
|
def perform
|
|
GithubRepo.update_to_latest
|
|
end
|
|
end
|
|
end
|