* chore: workspace views reafactor * chore: resolved coderabbit suggestions * chore: added project level workspace filter * chore: added enum for roles * chore: removed redundant type definition * chore: optimised the query --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
12 lines
441 B
TypeScript
12 lines
441 B
TypeScript
import { EIssueLayoutTypes } from "@plane/constants";
|
|
import { TWorkspaceLayoutProps } from "@/components/views/helper";
|
|
|
|
export type TLayoutSelectionProps = {
|
|
onChange: (layout: EIssueLayoutTypes) => void;
|
|
selectedLayout: EIssueLayoutTypes;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
export const GlobalViewLayoutSelection = (props: TLayoutSelectionProps) => <></>;
|
|
|
|
export const WorkspaceAdditionalLayouts = (props: TWorkspaceLayoutProps) => <></>;
|