Run API before ember's app

Ember's serving app has catch-all route, so it needs to be run after API
This commit is contained in:
Piotr Sarnacki 2012-08-10 13:49:53 +02:00
parent beb9d5c481
commit c4a57550e5

View File

@ -22,5 +22,5 @@ class App < Sinatra::Base
end
use Rack::Deflater
run Rack::Cascade.new([App, Travis::Api::App.new])
run Rack::Cascade.new([Travis::Api::App.new(disable_root_endpoint: true), App])