Merge branch 'develop' of https://gitlab.com/witel-front-end/loan-facilities/expert into develop
This commit is contained in:
@@ -236,6 +236,12 @@ export const GET_LOAN_HISTORY = BASE_URL + "/dashboard/navgan_loans"
|
||||
export const GET_HISTORY_DETAIL = BASE_URL + "/dashboard/navgan_loans"
|
||||
export const EXPORT_LOAN_HISTORY = BASE_URL + "/dashboard/navgan_loans/export"
|
||||
|
||||
//admin setting
|
||||
export const GET_ADMIN_SETTING = BASE_URL + "/dashboard/settings/show"
|
||||
export const ADD_ADMIN_SETTING = BASE_URL + "/dashboard/settings/store"
|
||||
export const UPDATE_ADMIN_SETTING = BASE_URL + "/dashboard/settings/update"
|
||||
export const DELETE_ADMIN_SETTING = BASE_URL + "/dashboard/settings/delete"
|
||||
|
||||
// loan statistics
|
||||
export const GET_LOAN_STATISTICS = BASE_URL + "/dashboard/reports/navgan/statistics"
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@ import PersonIcon from '@mui/icons-material/Person';
|
||||
import AccessibilityIcon from '@mui/icons-material/Accessibility';
|
||||
import AssessmentIcon from '@mui/icons-material/Assessment';
|
||||
import SecurityIcon from '@mui/icons-material/Security';
|
||||
import SettingsIcon from '@mui/icons-material/Settings';
|
||||
|
||||
const sidebarMenu = [
|
||||
[
|
||||
@@ -197,6 +198,16 @@ const sidebarMenu = [
|
||||
icon: <AccessibilityIcon sx={{width: 'inherit', height: 'inherit'}}/>,
|
||||
selected: false,
|
||||
permissions: ["manage_roles"],
|
||||
},
|
||||
{
|
||||
key: "sidebar.admin-setting",
|
||||
secondary: "secondary.admin-management",
|
||||
name: "admin_setting",
|
||||
type: "page",
|
||||
route: "/dashboard/admin-setting",
|
||||
icon: <SettingsIcon sx={{width: 'inherit', height: 'inherit'}}/>,
|
||||
selected: false,
|
||||
permissions: ["view_settings"],
|
||||
}
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user