We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 205ba14 commit 6ad8086Copy full SHA for 6ad8086
tmpauthenticator/__init__.py
@@ -81,6 +81,17 @@ def _auto_login_default(self):
81
"""
82
return True
83
84
+ @default("allow_all")
85
+ def _allow_all_default(self):
86
+ """
87
+ If no allow config is specified, then by default nobody will have access.
88
+ Prior to JupyterHub 5.0, the opposite was true.
89
+
90
+ Setting allow_all to True to preserve expected behavior of allowing
91
+ everyone to access the hub in a JupyterHub 5.0 setup.
92
93
+ return True
94
95
login_service = Unicode(
96
"Automatic Temporary Credentials",
97
help="""
0 commit comments