diff --git a/apps/docs/content/docs/users/organisations/members.mdx b/apps/docs/content/docs/users/organisations/members.mdx index 41fab018d..a98ad11ec 100644 --- a/apps/docs/content/docs/users/organisations/members.mdx +++ b/apps/docs/content/docs/users/organisations/members.mdx @@ -22,6 +22,37 @@ Organisation members have different permission levels that determine what they c organisation. +## Transferring Organisation Ownership + +Organisation ownership cannot be transferred through the regular organisation settings. Only a Documenso instance administrator can transfer ownership through the admin panel. + +If you are using Documenso Cloud, contact support to request an ownership transfer. If you are self-hosting, an instance administrator can follow the steps below. + +The target user must already be a member of the organisation. + +{/* prettier-ignore */} + + + Navigate to **Admin > Organisations** and select the organisation. + + + In the **Organisation Members** table, find the target member and click **Update role**. + + + Select **Owner** from the role dropdown and click **Update**. + + + +After the transfer: + +- The new owner is promoted to Admin if they previously held a lower role (Manager or Member). +- The previous owner retains their Admin role and remains a member of the organisation. +- Only one user can be the owner at a time. + + + The current owner cannot be demoted below Admin. Transfer ownership to another member first. + + ## Team Member Roles Teams have three roles with different permission levels: diff --git a/package.json b/package.json index bd2ee1d8c..a7cf0b97f 100644 --- a/package.json +++ b/package.json @@ -11,9 +11,9 @@ "build": "turbo run build", "dev": "npm run translate:compile && turbo run dev --filter=@documenso/remix", "dev:remix": "npm run translate:compile && turbo run dev --filter=@documenso/remix", - "dev:docs": "turbo run dev --filter=@documenso/documentation", + "dev:docs": "turbo run dev --filter=@documenso/docs", "dev:openpage-api": "turbo run dev --filter=@documenso/openpage-api", - "start": "turbo run start --filter=@documenso/remix --filter=@documenso/documentation --filter=@documenso/openpage-api", + "start": "turbo run start --filter=@documenso/remix --filter=@documenso/docs --filter=@documenso/openpage-api", "lint": "turbo run lint", "lint:fix": "turbo run lint:fix", "format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}\"",