2025-02-24 14:14:24 +05:30
|
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
2024-12-05 12:46:51 +05:30
|
|
|
import { TIssueGroupByOptions } from "@plane/types";
|
|
|
|
|
|
|
|
|
|
export const useWorkFlowFDragNDrop = (
|
|
|
|
|
groupBy: TIssueGroupByOptions | undefined,
|
|
|
|
|
subGroupBy?: TIssueGroupByOptions
|
|
|
|
|
) => ({
|
|
|
|
|
workflowDisabledSource: undefined,
|
|
|
|
|
isWorkflowDropDisabled: false,
|
2025-02-24 14:14:24 +05:30
|
|
|
getIsWorkflowWorkItemCreationDisabled: (groupId: string, subGroupId?: string) => false,
|
2024-12-05 12:46:51 +05:30
|
|
|
handleWorkFlowState: (
|
|
|
|
|
sourceGroupId: string,
|
|
|
|
|
destinationGroupId: string,
|
|
|
|
|
sourceSubGroupId?: string,
|
|
|
|
|
destinationSubGroupId?: string
|
|
|
|
|
) => {},
|
|
|
|
|
});
|