remove request endpoint

This commit is contained in:
carlad 2016-04-14 10:19:28 +02:00
parent 845f02d8d9
commit 6b7526dd7e
3 changed files with 0 additions and 14 deletions

View File

@ -99,12 +99,6 @@ module Travis::API::V3
end
end
resource :request do
capture id: :digit
route '/request/{request.id}'
get :find
end
resource :user do
capture id: :digit
route '/user'

View File

@ -17,7 +17,6 @@ module Travis::API::V3
Owner = Module.new { extend Services }
Repositories = Module.new { extend Services }
Repository = Module.new { extend Services }
Request = Module.new { extend Services }
Requests = Module.new { extend Services }
User = Module.new { extend Services }

View File

@ -1,7 +0,0 @@
module Travis::API::V3
class Services::Request::Find < Service
def run!
find
end
end
end