mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
## Description <!--- Describe the changes introduced by this pull request. --> <!--- Explain what problem it solves or what feature/fix it adds. --> ## Related Issue <!--- If this pull request is related to a specific issue, reference it here using #issue_number. --> <!--- For example, "Fixes #123" or "Addresses #456". --> ## Changes Made <!--- Provide a summary of the changes made in this pull request. --> <!--- Include any relevant technical details or architecture changes. --> - Change 1 - Change 2 - ... ## Testing Performed <!--- Describe the testing that you have performed to validate these changes. --> <!--- Include information about test cases, testing environments, and results. --> - Tested feature X in scenario Y. - Ran unit tests for component Z. - Tested on browsers A, B, and C. - ... ## Checklist <!--- Please check the boxes that apply to this pull request. --> <!--- You can add or remove items as needed. --> - [ ] I have tested these changes locally and they work as expected. - [ ] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [ ] I have followed the project's coding style guidelines. - [ ] I have addressed the code review feedback from the previous submission, if applicable. ## Additional Notes <!--- Provide any additional context or notes for the reviewers. --> <!--- This might include details about design decisions, potential concerns, or anything else relevant. --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Enhanced project README for clarity and improved environment variables section. - Added comprehensive developer and user documentation, including guides on local development, public API, self-hosting, and compliance standards. - Introduced specific guides for contributing, creating API keys, using webhooks, and setting up security measures. - Detailed documentation on various fields available for document signing to improve user understanding. - Added metadata structuring to improve navigation within the documentation site. - **Chores** - Updated `.gitignore` to better handle project files. - **New Features** - Introduced detailed metadata and documentation for various Documenso functionalities, including signing documents, user profiles, and compliance levels. - Added functionality for Direct Link Signing, enabling easy sharing for document signing. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Timur Ercan <timur.ercan31@gmail.com> Co-authored-by: Lucas Smith <me@lucasjamessmith.me> Co-authored-by: David Nguyen <davidngu28@gmail.com>
100 lines
3.9 KiB
Plaintext
100 lines
3.9 KiB
Plaintext
---
|
|
title: Teams
|
|
description: Learn how to create and manage teams in Documenso.
|
|
---
|
|
|
|
import Image from 'next/image';
|
|
|
|
import { Callout, Steps } from 'nextra/components';
|
|
|
|
# Teams
|
|
|
|
Documenso allows you to create teams to collaborate with others on creating and signing documents.
|
|
|
|
<Steps>
|
|
|
|
### Create a New Team
|
|
|
|
Anyone can create a team from their account by clicking on the "+" (plus) button in the "Teams" section from the account dropdown.
|
|
|
|

|
|
|
|
Each team is a separate entity with its members, documents, and templates. You can create as many teams as you like but remember that each team is billed separately.
|
|
|
|
<Callout type="info">You can transfer the ownership of the team at any time.</Callout>
|
|
|
|
### Name and URL
|
|
|
|
Clicking the "+" button will open a modal where you must pick your team's name and URL. The URL is the team's identifier and will link to the team's page and settings. An example URL would be:
|
|
|
|
```bash
|
|
https://app.documenso.com/t/<your-team-name>
|
|
```
|
|
|
|

|
|
|
|
You can select a different name and URL for your team, but we recommend using the same or similar name.
|
|
|
|
### Invite Team Members
|
|
|
|
After creating the team, you can invite team members by navigating to the "Members" tab in the team settings and clicking the "Invite member" button.
|
|
|
|
To access the team settings, click on the team's name in the account dropdown and select the appropriate team. Lastly, click again on the avatar and then "Team Settings".
|
|
|
|
Or you can copy this URL:
|
|
|
|
```bash
|
|
https://app.documenso.com/t/<your-team-name>/settings/members
|
|
```
|
|
|
|
Once you click on the "Invite member" button, you will be prompted to enter the email address of the person you want to invite. You can also select the role of the person you are inviting.
|
|
|
|

|
|
|
|
You can also bulk-invite members by uploading a CSV file with the email addresses and roles of the people you want to invite.
|
|
|
|
The table below shows how the CSV file should be structured:
|
|
|
|
| Email address | Role |
|
|
| -------------------------- | ------- |
|
|
| team-admin@documenso.com | Admin |
|
|
| team-manager@documenso.com | Manager |
|
|
| team-member@documenso.com | Member |
|
|
|
|
<Callout type="info">
|
|
The basic team plan includes 5 members. You can invite as many members as you like by upgrading
|
|
your team's seats on the team's billing page.
|
|
</Callout>
|
|
|
|
#### Roles
|
|
|
|
You can assign different permissions to team members based on their roles. The roles available are:
|
|
|
|
| Role | Create, Edit, Send Documents | Manage Users | Manage Admins | Settings | Billing | Delete/ Transfer |
|
|
| :-----: | :--------------------------: | :----------: | :-----------: | :------: | :-----: | :--------------: |
|
|
| Member | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
| Manager | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ |
|
|
| Admin | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
|
|
| Owner | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
|
|
### Set a Team Email
|
|
|
|
You can add a team email to make signing and sending documents easier. Adding a team email allows you to:
|
|
|
|
- See a signing request sent to this email (Team Inbox)
|
|
- See all documents sent on behalf of the team
|
|
|
|
### (Optional) Transfer Team Ownership
|
|
|
|
You can transfer the team's ownership at any time. To do this, navigate to the "General" tab in the team settings and click the "Transfer team" button.
|
|
|
|
Use this URL to get to the team settings:
|
|
|
|
```bash
|
|
https://app.documenso.com/t/<your-team-name>/settings
|
|
```
|
|
|
|
### [Send your First Document](https://app.documenso.com/)
|
|
|
|
</Steps>
|