Use Benjamins copy
This commit is contained in:
@@ -37,21 +37,11 @@
|
||||
:label="`Make workspace discoverable to @${verifiedDomain} users`"
|
||||
/>
|
||||
<div class="ml-6 text-body-2xs text-foreground-2">
|
||||
<p class="font-medium">When enabled:</p>
|
||||
<ul class="list-disc ml-4 mt-1 space-y-1">
|
||||
<li>
|
||||
Users with the
|
||||
<span class="font-medium">@{{ verifiedDomain }}</span>
|
||||
domain can find and request to join this workspace
|
||||
</li>
|
||||
<li>Workspace admins must approve all join requests</li>
|
||||
<li>
|
||||
Your workspace name, members and description will be visible to users
|
||||
with the
|
||||
<span class="font-medium">@{{ verifiedDomain }}</span>
|
||||
domain
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Users signing up with a
|
||||
<span class="font-medium">@{{ verifiedDomain }}</span>
|
||||
email will be able to find and request to join this workspace.
|
||||
</p>
|
||||
</div>
|
||||
</CommonCard>
|
||||
</div>
|
||||
|
||||
@@ -2035,6 +2035,7 @@ export type Project = {
|
||||
description?: Maybe<Scalars['String']['output']>;
|
||||
/** Public project-level configuration for embedded viewer */
|
||||
embedOptions: ProjectEmbedOptions;
|
||||
hasAccessToFeature: Scalars['Boolean']['output'];
|
||||
id: Scalars['ID']['output'];
|
||||
invitableCollaborators: WorkspaceCollaboratorCollection;
|
||||
/** Collaborators who have been invited, but not yet accepted. */
|
||||
@@ -2116,6 +2117,11 @@ export type ProjectCommentThreadsArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type ProjectHasAccessToFeatureArgs = {
|
||||
featureName: WorkspaceFeatureName;
|
||||
};
|
||||
|
||||
|
||||
export type ProjectInvitableCollaboratorsArgs = {
|
||||
cursor?: InputMaybe<Scalars['String']['input']>;
|
||||
filter?: InputMaybe<InvitableCollaboratorsFilter>;
|
||||
@@ -4650,6 +4656,7 @@ export type WorkspaceEmbedOptions = {
|
||||
|
||||
export const WorkspaceFeatureName = {
|
||||
DomainBasedSecurityPolicies: 'domainBasedSecurityPolicies',
|
||||
HideSpeckleBranding: 'hideSpeckleBranding',
|
||||
OidcSso: 'oidcSso',
|
||||
WorkspaceDataRegionSpecificity: 'workspaceDataRegionSpecificity'
|
||||
} as const;
|
||||
@@ -8374,6 +8381,7 @@ export type ProjectFieldArgs = {
|
||||
createdAt: {},
|
||||
description: {},
|
||||
embedOptions: {},
|
||||
hasAccessToFeature: ProjectHasAccessToFeatureArgs,
|
||||
id: {},
|
||||
invitableCollaborators: ProjectInvitableCollaboratorsArgs,
|
||||
invitedTeam: {},
|
||||
|
||||
Reference in New Issue
Block a user