Merge pull request #390 from minrk/swagger-api

move swagger API handler off of existing `/api`
This commit is contained in:
Min RK 2015-09-06 15:22:14 +02:00
commit 931fbb4f50

View File

@ -15,8 +15,9 @@ class APIHandler(web.StaticFileHandler, IPythonHandler):
@web.authenticated
def get(self):
self.log.debug("Serving api")
self.set_header('Content-Type', 'text/x-yaml')
return web.StaticFileHandler.get(self, 'api.yaml')
default_handlers = [
(r"/api", APIHandler)
(r"/api/spec.yaml", APIHandler)
]