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

View File

@@ -0,0 +1,24 @@
const AccountAllEndpoints = ["/account/records/list"];
const AccountPageInfo = {
tr: [
{
title: "Hesaplar",
endpoint: "/account/records/list",
description: "Hesaplarınızı listeyebilirsiniz",
component: "Table",
icon: null,
},
],
en: [
{
title: "Accounts",
endpoint: "/account/records/list",
description: "You can list your accounts",
component: "Table",
icon: null,
},
],
};
export { AccountAllEndpoints, AccountPageInfo };

View File

@@ -0,0 +1,15 @@
const AccountSubCategories = [
{
title: {
tr: "Bakiye Sorgulama",
en: "Balance Inquiry",
},
icon: "LucideLandmark",
component: null,
selfEndpoints: ["/account/records/list"],
allEndpoints: [],
subCategories: [],
},
];
export { AccountSubCategories };