refactor: cycles store (#2716)
* refactor: cycles store * refactor: active cycle details
This commit is contained in:
parent
162faf8339
commit
884b219508
20 changed files with 200 additions and 285 deletions
13
web/types/cycles.d.ts
vendored
13
web/types/cycles.d.ts
vendored
|
|
@ -1,13 +1,4 @@
|
|||
import type {
|
||||
IUser,
|
||||
IIssue,
|
||||
IProject,
|
||||
IProjectLite,
|
||||
IWorkspace,
|
||||
IWorkspaceLite,
|
||||
IIssueFilterOptions,
|
||||
IUserLite,
|
||||
} from "types";
|
||||
import type { IUser, IIssue, IProjectLite, IWorkspaceLite, IIssueFilterOptions, IUserLite } from "types";
|
||||
|
||||
export type TCycleView = "all" | "active" | "upcoming" | "completed" | "draft";
|
||||
|
||||
|
|
@ -20,7 +11,7 @@ export interface ICycle {
|
|||
created_at: Date;
|
||||
created_by: string;
|
||||
description: string;
|
||||
distribution: {
|
||||
distribution?: {
|
||||
assignees: TAssigneesDistribution[];
|
||||
completion_chart: TCompletionChartDistribution;
|
||||
labels: TLabelsDistribution[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue