development assistant init

This commit is contained in:
2023-08-12 13:37:14 +03:30
parent a48c751275
commit 5e85ae2119
9 changed files with 597 additions and 0 deletions

View File

@@ -66,3 +66,14 @@ export const CONFIRM_PROVINCE_MANAGER =
export const REJECT_PROVINCE_MANAGER =
BASE_URL + "/dashboard/province_manager/reject";
//province manager
// development assistant
export const GET_DEVELOPMENT_ASSISTANT =
BASE_URL + "/dashboard/development_assistant/show";
export const CONFIRM_DEVELOPMENT_ASSISTANT =
BASE_URL + "/dashboard/development_assistant/confirm";
export const REJECT_DEVELOPMENT_ASSISTANT =
BASE_URL + "/dashboard/development_assistant/reject";
//development assistant

View File

@@ -57,6 +57,14 @@ const sidebarMenu = [
selected: false,
role: "province_manager",
},
{
key: "sidebar.development-assistant",
type: "page",
route: "/dashboard/development-assistant",
icon: <DesktopWindowsIcon/>,
selected: false,
role: "development_assistant",
},
],
];