mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 14:31:37 +02:00
* fix: circular dependencies and build issues (#7232) * fix: circular dependencies and build issues * chore: removed duplicate enums * fix: build errors * chore: minor fix * fix: fixing circular dependecies and import errors * fix: circular dependencies and pnpm builds (#3433) * fix: circular dependencies and build issues * fix: dependencies update * fix: build * chore: update all imports in types package * chore: update enum imports * chore: minor fixes * fix: build errors --------- Co-authored-by: Aaron Reisman <aaron.reisman@plane.so> * fix: build errors * chore: remove share page enum from constants * fix: docker build --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
12 lines
369 B
TypeScript
12 lines
369 B
TypeScript
// plane types
|
|
import { EUserPermissions } from "@plane/constants";
|
|
import { EUserProjectRoles, TSearchEntities } from "@plane/types";
|
|
|
|
export const EDITOR_MENTION_TYPES: TSearchEntities[] = ["user_mention"];
|
|
export const ROLE_PERMISSIONS_TO_CREATE_PAGE = [
|
|
EUserPermissions.ADMIN,
|
|
EUserPermissions.MEMBER,
|
|
EUserProjectRoles.ADMIN,
|
|
EUserProjectRoles.MEMBER,
|
|
];
|