travis-api/lib/travis/api/v3/renderer/cron.rb
2016-06-08 15:26:51 +02:00

14 lines
329 B
Ruby

require 'travis/api/v3/renderer/model_renderer'
module Travis::API::V3
class Renderer::Cron < Renderer::ModelRenderer
representation(:minimal, :id)
representation(:standard, :id, :repository, :branch, :interval, :disable_by_build, :next_enqueuing)
def repository
model.branch.repository
end
end
end