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
Copy file name to clipboardExpand all lines: docs/snippets/schemas/v3/index.schema.mdx
-10Lines changed: 0 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,11 +63,6 @@
63
63
"type": "number",
64
64
"description": "The timeout (in milliseconds) for a repo indexing to timeout. Defaults to 2 hours.",
65
65
"minimum": 1
66
-
},
67
-
"enablePublicAccess": {
68
-
"type": "boolean",
69
-
"description": "[Sourcebot EE] When enabled, allows unauthenticated users to access Sourcebot. Requires an enterprise license with an unlimited number of seats.",
70
-
"default": false
71
66
}
72
67
},
73
68
"additionalProperties": false
@@ -177,11 +172,6 @@
177
172
"type": "number",
178
173
"description": "The timeout (in milliseconds) for a repo indexing to timeout. Defaults to 2 hours.",
179
174
"minimum": 1
180
-
},
181
-
"enablePublicAccess": {
182
-
"type": "boolean",
183
-
"description": "[Sourcebot EE] When enabled, allows unauthenticated users to access Sourcebot. Requires an enterprise license with an unlimited number of seats.",
Copy file name to clipboardExpand all lines: packages/schemas/src/v3/index.schema.ts
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,6 @@ const schema = {
62
62
"type": "number",
63
63
"description": "The timeout (in milliseconds) for a repo indexing to timeout. Defaults to 2 hours.",
64
64
"minimum": 1
65
-
},
66
-
"enablePublicAccess": {
67
-
"type": "boolean",
68
-
"description": "[Sourcebot EE] When enabled, allows unauthenticated users to access Sourcebot. Requires an enterprise license with an unlimited number of seats.",
69
-
"default": false
70
65
}
71
66
},
72
67
"additionalProperties": false
@@ -176,11 +171,6 @@ const schema = {
176
171
"type": "number",
177
172
"description": "The timeout (in milliseconds) for a repo indexing to timeout. Defaults to 2 hours.",
178
173
"minimum": 1
179
-
},
180
-
"enablePublicAccess": {
181
-
"type": "boolean",
182
-
"description": "[Sourcebot EE] When enabled, allows unauthenticated users to access Sourcebot. Requires an enterprise license with an unlimited number of seats.",
logger.error(`Public access isn't supported in your current plan: ${plan}. If you have a valid enterprise license key, pass it via SOURCEBOT_EE_LICENSE_KEY. For support, contact ${SOURCEBOT_SUPPORT_EMAIL}.`);
108
+
logger.error(`Anonymous access isn't supported in your current plan: ${plan}. For support, contact ${SOURCEBOT_SUPPORT_EMAIL}.`);
109
109
returnnotAuthenticated();
110
110
}
111
111
112
-
// To support unauthed access a guest user is created in initialize.ts, which we return here
112
+
// To support anonymous access a guest user is created in initialize.ts, which we return here
0 commit comments