travis-api/lib/travis/api/app/endpoint/branches.rb
2012-10-02 19:10:29 +02:00

12 lines
187 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