Commit d271e742 authored by John E. Vincent's avatar John E. Vincent

bit more stubbing before I forget

parent 97fc7133
......@@ -62,6 +62,8 @@ module Noah
load File.join(File.dirname(__FILE__), 'service_routes.rb')
load File.join(File.dirname(__FILE__), 'application_routes.rb')
load File.join(File.dirname(__FILE__), 'configuration_routes.rb')
#load File.join(File.dirname(__FILE__), 'watcher_routes.rb')
#load File.joint(File.dirname(__FILE__), 'ephemeral_routes.rb')
end
end
class Noah::App
# Stubbing Ephemeral endpoints
get '/e/*' do
# Some logic to handle splats for ephemerals
# Eventually I'll move to root path
end
put '/e/*' do
# Some logic for creating ephemerals
end
delete '/e/*' do
# See previous two entries
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment