wag-frontend-version-3/apimaps/meeting/pageInfo.ts

58 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 };