travis-api/lib/travis/api/v3/queries/log.rb
2016-07-29 13:51:24 +02:00

10 lines
184 B
Ruby

module Travis::API::V3
class Queries::Log < Query
def find(job)
#TODO check for the log in the DB, and then fetch it from S3 if not.
job.log
end
end
end