old version placed

This commit is contained in:
2024-12-31 12:22:36 +03:00
parent 08b7ad5c00
commit 00acc8c320
93 changed files with 7481 additions and 1 deletions

View File

@@ -0,0 +1,50 @@
const LivingSpaceInfo = {
tr: [
{
title: "Yaşayan Kişiler Listesi",
icon: null,
description: "Yaşayan Kişiler listeyebilirsiniz",
endpoint: "/building/living_space/list",
component: "Table",
},
{
title: "Yaşayan Kişi Ekle",
icon: "BadgePlus",
description: "Yaşayan Kişi oluşturma sayfasına hoş geldiniz",
endpoint: "/building/living_space/create",
component: "AddCreate2Table",
},
{
title: null,
icon: "Pencil",
description: "Yaşayan Kişi güncelleme sayfasına hoş geldiniz",
endpoint: "/building/living_space/update/{build_uu_id}",
component: "AddUpdate2Table",
},
],
en: [
{
title: "Living People List",
icon: null,
description: "Welcome to the living people update page",
endpoint: "/building/living_space/list",
component: "Table",
},
{
title: "Create Living People",
icon: "BadgePlus",
description: "Welcome to the living people creation page",
endpoint: "/building/living_space/create",
component: "AddCreate2Table",
},
{
title: "Update Living People",
icon: "Pencil",
description: "Welcome to the living people update page",
endpoint: "/building/living_space/update/{build_uu_id}",
component: "AddUpdate2Table",
},
],
};
export { LivingSpaceInfo };