35 lines
717 B
TypeScript
35 lines
717 B
TypeScript
export const MAX_STATIC_FILE_SIZE = 5 * 1024 * 1024; // 5MB
|
|
|
|
export const MARKETING_PRICING_PAGE_LINK = "https://plane.so/pricing";
|
|
|
|
export const MARKETING_CONTACT_US_PAGE_LINK = "https://plane.so/contact";
|
|
|
|
export const MARKETING_PLANE_ONE_PAGE_LINK = "https://plane.so/one";
|
|
|
|
export const PROGRESS_STATE_GROUPS_DETAILS = [
|
|
{
|
|
key: "completed_issues",
|
|
title: "Completed",
|
|
color: "#16A34A",
|
|
},
|
|
{
|
|
key: "started_issues",
|
|
title: "Started",
|
|
color: "#F59E0B",
|
|
},
|
|
{
|
|
key: "unstarted_issues",
|
|
title: "Unstarted",
|
|
color: "#3A3A3A",
|
|
},
|
|
{
|
|
key: "backlog_issues",
|
|
title: "Backlog",
|
|
color: "#A3A3A3",
|
|
},
|
|
];
|
|
|
|
export enum TSORT_ORDER {
|
|
ASC = "asc",
|
|
DESC = "desc",
|
|
}
|