Use Benjamins copy

This commit is contained in:
andrewwallacespeckle
2025-05-22 15:48:59 +02:00
parent c55e18cf35
commit c15ea3fc65
2 changed files with 13 additions and 15 deletions
@@ -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: {},