From 54060dbfc6f87a9297c6dbb81e94358a056c787e Mon Sep 17 00:00:00 2001 From: Josh Kalderimis Date: Tue, 5 Nov 2013 00:18:14 +0100 Subject: [PATCH] removed the events endpoint it isn't used, and there are no tests, i think it's safe to remove --- lib/travis/api/app/endpoint/events.rb | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 lib/travis/api/app/endpoint/events.rb diff --git a/lib/travis/api/app/endpoint/events.rb b/lib/travis/api/app/endpoint/events.rb deleted file mode 100644 index 47d43fc5..00000000 --- a/lib/travis/api/app/endpoint/events.rb +++ /dev/null @@ -1,12 +0,0 @@ -require 'travis/api/app' - -class Travis::Api::App - class Endpoint - class Events < Endpoint - get '/' do - respond_with service(:find_events, params), type: :events - end - end - end -end -