travis-api/lib/travis/api/v3/services/requests/create.rb
2015-02-17 13:11:57 +01:00

12 lines
197 B
Ruby

module Travis::API::V3
class Services::Requests::Create < Service
helpers :repository
def run
not_implemented
query.schedule_for(repository)
accepted
end
end
end