From d56f105147301b23ca0631be18f801a5e7351548 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Mon, 28 Sep 2020 00:07:44 +0200 Subject: [PATCH] Add AllEntitiesHandler stub --- app.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app.py b/app.py index 3e0dd0e..3fa8648 100644 --- a/app.py +++ b/app.py @@ -89,6 +89,18 @@ class Oas3Handler(tornado.web.RequestHandler, metaclass=ABCMeta): self.finish() +class AllEntitiesHandler(AuthenticatedHandler, metaclass=ABCMeta): + # noinspection PyAttributeOutsideInit + def initialize(self, auth_provider=None): + super().initialize(auth_provider) + + def post(self): + pass + + def get(self): + pass + + class SingleEntityHandler(AuthenticatedHandler, metaclass=ABCMeta): # noinspection PyAttributeOutsideInit def initialize(self, auth_provider=None):