58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
const MeetingAllEndpoints = [
|
||
"/build/decision_book/invite/list",
|
||
"/build/decision_book/invite/create",
|
||
"/build/decision_book/invite/update",
|
||
"/build/decision_book/invitations/assign",
|
||
];
|
||
|
||
const MeetingPageInfo = {
|
||
tr: [
|
||
{
|
||
title: "Toplantı Listesi",
|
||
icon: null,
|
||
description: "Toplantı listeyebilirsiniz",
|
||
endpoint: "",
|
||
component: "Table",
|
||
},
|
||
{
|
||
title: "Toplantı Ekle",
|
||
icon: "BadgePlus",
|
||
description: "Toplantı oluşturma sayfasına hoş geldiniz",
|
||
endpoint: "/building/living_space/create",
|
||
component: "AddCreate2Table",
|
||
},
|
||
{
|
||
title: "Toplantı Güncelle",
|
||
icon: "Pencil",
|
||
description: "Toplantı güncelleme sayfasına hoş geldiniz",
|
||
endpoint: "/building/living_space/update/{build_uu_id}",
|
||
component: "AddUpdate2Table",
|
||
},
|
||
],
|
||
en: [
|
||
{
|
||
title: "Meeting List",
|
||
icon: null,
|
||
description: "Welcome to the meeting list page",
|
||
endpoint: "",
|
||
component: "Table",
|
||
},
|
||
{
|
||
title: "Create Meeting",
|
||
icon: "BadgePlus",
|
||
description: "Welcome to the meeting creation page",
|
||
endpoint: "/building/living_space/create",
|
||
component: "AddCreate2Table",
|
||
},
|
||
{
|
||
title: "Update Meeting",
|
||
icon: "Pencil",
|
||
description: "Welcome to the meeting update page",
|
||
endpoint: "/building/living_space/update/{build_uu_id}",
|
||
component: "AddUpdate2Table",
|
||
},
|
||
],
|
||
};
|
||
|
||
export { MeetingAllEndpoints, MeetingPageInfo };
|