63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
const CompanyCategories = [
|
||
{
|
||
title: {
|
||
tr: "Departmanlar",
|
||
en: "Departments",
|
||
},
|
||
icon: "FolderOpenDot",
|
||
component: null,
|
||
selfEndpoints: [
|
||
"/department/list",
|
||
"/department/create",
|
||
"/department/update/{department_uu_id}",
|
||
],
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
{
|
||
title: {
|
||
tr: "Görevler",
|
||
en: "Duties",
|
||
},
|
||
icon: "BriefcaseMedical",
|
||
component: null,
|
||
selfEndpoints: ["/duties/list", "/duties/create", "/duties/update"],
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
{
|
||
title: {
|
||
tr: "Çalışanlar",
|
||
en: "Employees",
|
||
},
|
||
icon: "Pickaxe",
|
||
component: null,
|
||
selfEndpoints: [
|
||
"/employee/list",
|
||
"/employee/create",
|
||
"/employee/update/{employee_uu_id}",
|
||
"/employee/employ",
|
||
"/employee/fire",
|
||
],
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
{
|
||
title: {
|
||
tr: "Personel",
|
||
en: "Staff",
|
||
},
|
||
icon: "BicepsFlexed",
|
||
component: null,
|
||
selfEndpoints: [
|
||
"/staff/list",
|
||
"/staff/create",
|
||
"/staff/update/{staff_uu_id}",
|
||
],
|
||
allEndpoints: [],
|
||
subCategories: [],
|
||
},
|
||
];
|
||
|
||
export { CompanyCategories };
|