[WEB-2879] chore sub issue analytics improvements (#6275)

* chore: epics type added to package

* chore: epic analytics helper function added

* chore: sub issue analytics mutation improvement
This commit is contained in:
Anmol Singh Bhatia 2024-12-24 20:52:03 +05:30 committed by GitHub
parent ff936887d2
commit fedcdf0c84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 104 additions and 18 deletions

View file

@ -0,0 +1,15 @@
import { TEpicAnalyticsGroup } from "@plane/types";
export const updateEpicAnalytics = () => {
const updateAnalytics = (
workspaceSlug: string,
projectId: string,
epicId: string,
data: {
incrementStateGroupCount?: TEpicAnalyticsGroup;
decrementStateGroupCount?: TEpicAnalyticsGroup;
}
) => {};
return { updateAnalytics };
};