51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
const PartsPageInfo = {
|
|
tr: [
|
|
{
|
|
title: "Daire Listesi",
|
|
icon: null,
|
|
description: "Daireleri listeyebilirsiniz",
|
|
endpoint: "/building/parts/list",
|
|
component: "Table",
|
|
},
|
|
{
|
|
title: "Daire Oluştur",
|
|
icon: "BadgePlus",
|
|
description: "Daire oluşturabilirsiniz",
|
|
endpoint: "/building/parts/create",
|
|
component: "Form",
|
|
},
|
|
{
|
|
title: "Daire Güncelle",
|
|
icon: "Pencil",
|
|
description: "Daire güncelleyebilirsiniz",
|
|
endpoint: "/building/parts/update/{build_uu_id}",
|
|
component: "Form",
|
|
},
|
|
],
|
|
en: [
|
|
{
|
|
title: "Flat List",
|
|
icon: null,
|
|
description: "You can list the flats",
|
|
endpoint: "/building/parts/list",
|
|
component: "Table",
|
|
},
|
|
{
|
|
title: "Create Flat",
|
|
icon: "BadgePlus",
|
|
description: "You can create a flat",
|
|
endpoint: "/building/parts/create",
|
|
component: "Form",
|
|
},
|
|
{
|
|
title: "Update Flat",
|
|
icon: "Pencil",
|
|
description: "You can update a flat",
|
|
endpoint: "/building/parts/update/{build_uu_id}",
|
|
component: "Form",
|
|
},
|
|
],
|
|
};
|
|
|
|
export { PartsPageInfo };
|