From fcac7b8a4070dedb2b5b6bf2fdb44625947ae6b6 Mon Sep 17 00:00:00 2001 From: nitin <142569587+ehconitin@users.noreply.github.com> Date: Wed, 14 May 2025 01:29:43 +0530 Subject: [PATCH] docs: update admin panel access property name in upgrade guide (#12019) ## Changes - Updated the property name in the upgrade guide to reflect the permission split in Admin Panel: - `canImpersonate`: only provides access to impersonate functionality - `canAccessFullAdminPanel`: provides access to all other admin panel features --- .../src/content/developers/self-hosting/upgrade-guide.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx b/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx index 172af0f30..654ffaf47 100644 --- a/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx +++ b/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx @@ -34,7 +34,7 @@ Make sure to keep upgrading your instance sequentially, without skipping any maj To check if a workspace has been correctly migrated you can review its version in database in `core.workspace` table. -It should always be in the range of your current Twenty's instance `major.minor` version, you can view your instance version in the admin panel (at `/settings/admin-panel`, accessible if your user has `canImpersonate` property set to true in the database) or by running `echo $APP_VERSION` in your `twenty-server` container. +It should always be in the range of your current Twenty's instance `major.minor` version, you can view your instance version in the admin panel (at `/settings/admin-panel`, accessible if your user has `canAccessFullAdminPanel` property set to true in the database) or by running `echo $APP_VERSION` in your `twenty-server` container. To fix a desynchronized workspace version, you will have to upgrade from the corresponding twenty's version following related upgrade guide sequentially and so on until it reaches desired version.