Merge pull request #92 from travis-ci/jk_remove_stats_endpoint

Removed the stats endpoints
This commit is contained in:
Josh Kalderimis 2013-11-05 04:55:40 -08:00
commit b75c707558

View File

@ -1,15 +0,0 @@
require 'travis/api/app'
class Travis::Api::App
class Endpoint
class Stats < Endpoint
get '/repos' do
{ :stats => service(:find_daily_repos_stats) }
end
get '/tests' do
{ :stats => service(:find_daily_tests_stats) }
end
end
end
end