Skip to content

Commit

Permalink
docs: 📝 Add DirectusInvite types to documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Harman committed Jun 27, 2023
1 parent 5509f7a commit 115cd0d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/content/4.Types/8.DirectusInvite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# DirectusInvite

Types related to Directus user invite procedure.

```ts
export interface DirectusInviteCreation {
email: string;
role: string;
invite_url?: string
};

export interface DirectusInviteAccept {
token: string;
password: string
};
```

0 comments on commit 115cd0d

Please sign in to comment.