remove empty extension

This commit is contained in:
Konstantin Haase 2012-09-28 16:59:24 +02:00
parent e99c5c2d4f
commit ff4dd4d61b
2 changed files with 1 additions and 9 deletions

View File

@ -6,7 +6,7 @@ class Travis::Api::App
class Endpoint < Responder
set(:prefix) { "/" << name[/[^:]+$/].underscore }
set disable_root_endpoint: false
register :scoping, :services
register :scoping
helpers :services, :current_user
before { content_type :json }

View File

@ -1,8 +0,0 @@
require 'travis/api/app'
class Travis::Api::App
module Extensions
module Services
end
end
end