mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
|
|
import { TIssueGroupByOptions } from "@plane/types";
|
||
|
|
|
||
|
|
export const useWorkFlowFDragNDrop = (
|
||
|
|
groupBy: TIssueGroupByOptions | undefined,
|
||
|
|
subGroupBy?: TIssueGroupByOptions
|
||
|
|
) => ({
|
||
|
|
workflowDisabledSource: undefined,
|
||
|
|
isWorkflowDropDisabled: false,
|
||
|
|
handleWorkFlowState: (
|
||
|
|
sourceGroupId: string,
|
||
|
|
destinationGroupId: string,
|
||
|
|
sourceSubGroupId?: string,
|
||
|
|
destinationSubGroupId?: string
|
||
|
|
) => {},
|
||
|
|
});
|