Skip to content

Commit 548ee82

Browse files
committed
fix team invite docs
1 parent 4432fd8 commit 548ee82

6 files changed

Lines changed: 37 additions & 18 deletions

File tree

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24

content/4.teams/1.about.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,21 +76,28 @@ See [File History](/cloud/file-history) for the full reference, or [Restore Lost
7676

7777
Owners invite people by email from **Settings → Teams**.
7878

79+
::theme-image{light="/screenshots/cloud-app/v2-team-invite-light.png" dark="/screenshots/cloud-app/v2-team-invite-dark.png" alt="Invite a member"}
80+
::
81+
7982
::steps
8083
### Send an invitation
8184

85+
8286
Enter the person's email address and choose a role (Editor or Viewer). They'll receive an email with an invitation link.
8387

84-
::theme-image{light="/screenshots/cloud-app/v2-team-invite-light.png" dark="/screenshots/cloud-app/v2-team-invite-dark.png" alt="Invite a member"}
88+
89+
::theme-image{light="/screenshots/cloud-app/v2-team-invitation-light.png" dark="/screenshots/cloud-app/v2-team-invitation-dark.png" alt="Team invitation email"}
8590
::
8691

87-
### They accept
92+
### They receive an email
8893

89-
The invitee gets an email invitation:
94+
The invitee gets an email invitation.
9095

91-
::theme-image{light="/screenshots/cloud-app/v2-team-invitation-light.png" dark="/screenshots/cloud-app/v2-team-invitation-dark.png" alt="Team invitation email"}
96+
::theme-image{light="/screenshots/cloud-app/v2-team-accept-invite-email.png" dark="/screenshots/cloud-app/v2-team-accept-invite-email.png" alt="Email invitation"}
9297
::
9398

99+
### They accept
100+
94101
The link opens an accept page. The invitee signs in (or creates an account) using the email the invitation was sent to. If they're already signed in with a different account, they'll be asked to sign in again with the invited email.
95102

96103
::theme-image{light="/screenshots/cloud-app/v2-team-accept-invite-light.png" dark="/screenshots/cloud-app/v2-team-accept-invite-dark.png" alt="Accept an invitation"}

justfile

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,33 @@
44
default:
55
@just --list
66

7+
# Load the Node version pinned in .nvmrc (via nvm), then run a command
8+
_with-node +cmd:
9+
#!/usr/bin/env bash
10+
set -euo pipefail
11+
export NVM_DIR="${NVM_DIR:-$HOME/.nvm}"
12+
if [ -s "$NVM_DIR/nvm.sh" ]; then
13+
\. "$NVM_DIR/nvm.sh"
14+
nvm use >/dev/null
15+
fi
16+
echo "Using node $(node --version)"
17+
{{cmd}}
18+
19+
# Install dependencies (pinned Node from .nvmrc)
20+
install:
21+
@just _with-node npm install
22+
723
# Development
824
dev:
9-
npm run dev
25+
@just _with-node npm run dev
1026

1127
# Build
1228
build:
13-
npm run build
29+
@just _with-node npm run build
1430

1531
# Preview production build
1632
preview:
17-
npm run preview
33+
@just _with-node npm run preview
1834

1935
# Generate fly.toml from template
2036
generate-fly-toml env:

package-lock.json

Lines changed: 3 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "basic-memory-docs",
33
"private": true,
4+
"engines": {
5+
"node": ">=20 <25"
6+
},
47
"scripts": {
58
"dev": "nuxt dev",
69
"build": "nuxt build",
41.8 KB
Loading

0 commit comments

Comments
 (0)