Add AllEntitiesHandler stub
This commit is contained in:
parent
721b9dabef
commit
d56f105147
1 changed files with 12 additions and 0 deletions
12
app.py
12
app.py
|
@ -89,6 +89,18 @@ class Oas3Handler(tornado.web.RequestHandler, metaclass=ABCMeta):
|
||||||
self.finish()
|
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):
|
class SingleEntityHandler(AuthenticatedHandler, metaclass=ABCMeta):
|
||||||
# noinspection PyAttributeOutsideInit
|
# noinspection PyAttributeOutsideInit
|
||||||
def initialize(self, auth_provider=None):
|
def initialize(self, auth_provider=None):
|
||||||
|
|
Loading…
Reference in a new issue