mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-06 08:53:39 +00:00
24 lines
570 B
TypeScript
24 lines
570 B
TypeScript
import { t } from "i18next";
|
|
|
|
export type ModuleKey = "objective" | "performance";
|
|
|
|
export const ROUTE_CONFIG: Record<
|
|
ModuleKey,
|
|
{
|
|
basePath: string;
|
|
planYearsPath: string;
|
|
navLabelKey: string;
|
|
}
|
|
> = {
|
|
performance: {
|
|
basePath: "/performance-management",
|
|
planYearsPath: "/performance-management/plan-years",
|
|
navLabelKey: "nav.performanceManagement",
|
|
},
|
|
objective: {
|
|
basePath: "/objective-management",
|
|
planYearsPath: "/objective-management/plan-years",
|
|
navLabelKey: "nav.objectiveManagement",
|
|
},
|
|
};
|