2023-02-08 13:21:03 +00:00
|
|
|
// types
|
2023-11-08 15:01:46 +00:00
|
|
|
import { IStateResponse } from "types";
|
2023-02-08 13:21:03 +00:00
|
|
|
|
2023-11-08 15:01:46 +00:00
|
|
|
export const orderStateGroups = (unorderedStateGroups: IStateResponse | undefined): IStateResponse | undefined => {
|
2023-07-26 17:50:44 +00:00
|
|
|
if (!unorderedStateGroups) return undefined;
|
2023-11-08 15:01:46 +00:00
|
|
|
return Object.assign({ backlog: [], unstarted: [], started: [], completed: [], cancelled: [] }, unorderedStateGroups);
|
2023-02-08 13:21:03 +00:00
|
|
|
};
|