Show More
@@ -67,7 +67,7 b' from .services.sessions.sessionmanager import SessionManager' | |||||
67 |
|
67 | |||
68 | from .auth.login import LoginHandler |
|
68 | from .auth.login import LoginHandler | |
69 | from .auth.logout import LogoutHandler |
|
69 | from .auth.logout import LogoutHandler | |
70 | from .base.handlers import FileFindHandler |
|
70 | from .base.handlers import IPythonHandler, FileFindHandler | |
71 |
|
71 | |||
72 | from IPython.config import Config |
|
72 | from IPython.config import Config | |
73 | from IPython.config.application import catch_config_error, boolean_flag |
|
73 | from IPython.config.application import catch_config_error, boolean_flag | |
@@ -663,12 +663,14 b' class NotebookApp(BaseIPythonApplication):' | |||||
663 |
|
663 | |||
664 | login_handler = Type( |
|
664 | login_handler = Type( | |
665 | default_value=LoginHandler, |
|
665 | default_value=LoginHandler, | |
|
666 | klass=object, | |||
666 | config=True, |
|
667 | config=True, | |
667 | help='The login handler class to use.', |
|
668 | help='The login handler class to use.', | |
668 | ) |
|
669 | ) | |
669 |
|
670 | |||
670 | logout_handler = Type( |
|
671 | logout_handler = Type( | |
671 | default_value=LogoutHandler, |
|
672 | default_value=LogoutHandler, | |
|
673 | klass=object, | |||
672 | config=True, |
|
674 | config=True, | |
673 | help='The logout handler class to use.', |
|
675 | help='The logout handler class to use.', | |
674 | ) |
|
676 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now