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,22 @@
const IdentityAllEndpoints = [
"/users/list",
"/users/create",
"/users/update/{user_uu_id}",
"/people/list",
"/people/create",
"/people/update/{people_uu_id}",
];
const IdentitySelfEndpoints = ["/users/list"];
const AddressAllEndpoints = [
"/address/list",
"/address/create",
"/address/update",
"/postcode/create",
"/postcode/update",
"/postcode/list",
"/address/search",
];
export { IdentityAllEndpoints, IdentitySelfEndpoints, AddressAllEndpoints };

View File

@@ -0,0 +1,69 @@
import { AddressAllEndpoints } from "./pageInfo";
import { PeoplePageInfo } from "../people/pageInfo";
const AddressSubCategories = [
{
title: {
tr: "Posta Kodları",
en: "Postcodes",
},
icon: "Container",
component: null,
selfEndpoints: ["/postcode/list", "/postcode/create", "/postcode/update"],
allEndpoints: [],
subCategories: [],
},
{
title: {
tr: "Adres Arama",
en: "Address Search",
},
icon: "ScanSearch",
component: null,
selfEndpoints: ["/address/search", "/address/list"],
allEndpoints: [],
subCategories: [],
},
];
const IdentityCategories = [
{
title: {
tr: "Kullanıcılar",
en: "Users",
},
icon: "UserPlus",
component: null,
selfEndpoints: [
"/users/list",
"/users/create",
"/users/update/{user_uu_id}",
],
allEndpoints: [],
subCategories: [],
},
{
title: {
tr: "İnsanlar",
en: "People",
},
icon: "PersonStanding",
component: "PeoplePage",
pageInfo: PeoplePageInfo,
allEndpoints: [],
subCategories: [],
},
{
title: {
tr: "Adresler",
en: "Addresses",
},
icon: "MapPinned",
component: null,
selfEndpoints: ["/address/list", "/address/create", "/address/update"],
allEndpoints: AddressAllEndpoints,
subCategories: AddressSubCategories,
},
];
export { IdentityCategories };