Improve getting started doc (#19138)

- improves
`packages/twenty-docs/developers/extend/apps/getting-started.mdx`

---------

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
martmull
2026-04-01 22:39:44 +02:00
committed by GitHub
parent 4cc3deb937
commit 16e3e38b79
50 changed files with 2001 additions and 2630 deletions
@@ -38,6 +38,7 @@ import {
import { UserRoleService } from 'src/engine/metadata-modules/user-role/user-role.service';
import { WorkspaceCacheStorageService } from 'src/engine/workspace-cache-storage/workspace-cache-storage.service';
import { WorkspaceCacheService } from 'src/engine/workspace-cache/services/workspace-cache.service';
import { isApplicationAuthContext } from 'src/engine/core-modules/auth/guards/is-application-auth-context.guard';
export interface PageInfo {
hasNextPage?: boolean;
@@ -105,6 +106,11 @@ export abstract class RestApiBaseHandler {
}
roleId = userWorkspaceRoleId;
} else if (
isApplicationAuthContext(authContext) &&
isDefined(authContext.application.defaultRoleId)
) {
roleId = authContext.application.defaultRoleId;
} else {
throw new PermissionsException(
'Authentication context is invalid',