You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While converting JupyerLab Server to a Server Extension, it has been pretty easy to implement class LabServerApp(ExtensionAppJinjaMixin, ExtensionApp)
This works fine without touching the handlers which are still the old classical flavor (not a ExtensionHandler). If we also want to have the handler as pure extension, there are a bunch of code to be duplicated: the base.handlers.py (APIHandler...) should be replicated in something like extensions.base_handler.py.
Do we want to go this way? Maybe the base.handlers.py could extend/reuse the extensions.base_handler.py?
The text was updated successfully, but these errors were encountered:
While converting JupyerLab Server to a Server Extension, it has been pretty easy to implement
class LabServerApp(ExtensionAppJinjaMixin, ExtensionApp)
This works fine without touching the handlers which are still the old classical flavor (not a ExtensionHandler). If we also want to have the handler as pure extension, there are a bunch of code to be duplicated: the
base.handlers.py
(APIHandler...) should be replicated in something likeextensions.base_handler.py
.Do we want to go this way? Maybe the
base.handlers.py
could extend/reuse theextensions.base_handler.py
?The text was updated successfully, but these errors were encountered: