travis-api/lib/travis/api/app/endpoint/branches.rb
2012-09-29 20:48:31 +02:00

12 lines
188 B
Ruby

require 'travis/api/app'
class Travis::Api::App
class Endpoint
class Branches < Endpoint
get('/') do
body all(params).run, type: :branches
end
end
end
end