## Summary Two things, both fallout from #20360: 1. Rename the `Members → Access` tab to `Members → Invite`. The previous label leaned security-flavored; "Invite" reads as the verb users come here to do. 2. Fix the `signup_invite_email` Playwright test (failing on main, e.g. https://github.com/twentyhq/twenty/actions/runs/25671161586/job/75356474079). The invite-link button moved off the default Team tab when the Members page got tabbed; the test was looking for it on the wrong tab. ## Rename details - File: `SettingsWorkspaceMembersAccessTab.tsx` → `SettingsWorkspaceMembersInviteTab.tsx` (single git rename, ~99% similarity) - Exported component: `SettingsWorkspaceMembersAccessTab` → `SettingsWorkspaceMembersInviteTab` - Tab id (and URL hash): `access` → `invite` - Tab title: `Access` → `Invite` - Icon: `IconKey` → `IconUserPlus` - Doc breadcrumbs (3 files): `Members → Access` → `Members → Invite` ## E2E fix `MembersSection` (Page Object Model) now has an `inviteTab` locator (via `getByTestId('tab-invite')`) and a `goToInviteTab()` helper. Both `copyInviteLink` and `sendInviteEmail` click the Invite tab first, so they work regardless of which tab the page lands on initially. Idempotent if already there. ## Test plan - [x] CI green (e2e test + lint + typecheck + format) - Lingui `.po` files will pick up the new source paths on the next translation pass — not touched here. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
---
|
|
title: Member Management
|
|
description: Invite team members and manage workspace access.
|
|
---
|
|
|
|
Manage who has access to your workspace under **Settings → Members**.
|
|
|
|
## Invite New Members
|
|
|
|
### Using Email Invitation
|
|
1. Go to **Settings → Members**
|
|
2. Click **+ Invite**
|
|
3. Enter the person's email address
|
|
4. Select a role for the new member
|
|
5. Click **Send invite**
|
|
|
|
The invited person will receive an email with a link to join your workspace.
|
|
|
|
### Using Invite Link
|
|
1. Go to **Settings → Members**
|
|
2. Copy the workspace invite link
|
|
3. Share the link with new team members
|
|
4. They'll receive access once they sign up
|
|
|
|
## View and Manage Members
|
|
|
|
### View All Members
|
|
Go to **Settings → Members** to see:
|
|
- All active members
|
|
- Pending invitations
|
|
|
|
### Edit a Member's Profile
|
|
Click on a member to open their profile page. As an admin, you can:
|
|
- Edit their **name**
|
|
- Update their **profile picture**
|
|
- **Impersonate** their account (useful for troubleshooting)
|
|
- **Delete** their account
|
|
|
|
### Change a Member's Role
|
|
On the member's profile page:
|
|
1. Open the **Permissions** tab
|
|
2. View the currently assigned role
|
|
3. Select a different role from the dropdown
|
|
4. The change takes effect immediately
|
|
|
|
→ [Learn more about roles and permissions](/user-guide/permissions-access/capabilities/permissions)
|
|
|
|
### Remove a Member
|
|
1. Click on the member to open their profile
|
|
2. Click **Delete** to remove them from the workspace
|
|
|
|
<Warning>
|
|
Removed members lose access immediately. Their data (records, notes, tasks) remains in the workspace.
|
|
</Warning>
|
|
|
|
<Warning>
|
|
**Email sync is also removed.** If the deleted user was the only one who synced certain emails, those emails will be permanently removed from the workspace.
|
|
</Warning>
|
|
|
|
## Pending Invitations
|
|
|
|
Manage invitations that haven't been accepted:
|
|
- **Resend**: Send the invitation email again
|
|
- **Cancel**: Revoke the invitation before it's accepted
|
|
|
|
## Approved Access Domains
|
|
|
|
Allow team members to join automatically based on their email domain:
|
|
|
|
1. Go to **Settings → Members → Invite**
|
|
2. Add your company domain (e.g., `yourcompany.com`)
|
|
3. Anyone with that email domain can join without an invitation
|
|
|
|
## Related
|
|
|
|
- [Permissions](/user-guide/permissions-access/capabilities/permissions) — configure what each role can do
|
|
- [Domains Settings](/user-guide/settings/capabilities/domains-settings) — configure approved domains
|
|
|