diff --git a/src/_nav.js b/src/_nav.js index 9032739642f9..9646643a09f3 100644 --- a/src/_nav.js +++ b/src/_nav.js @@ -119,7 +119,7 @@ const _nav = [ }, { component: CNavItem, - name: 'Best Practice Analyzer', + name: 'Best Practice Analyser', to: '/tenant/standards/bpa-report', }, { @@ -201,29 +201,29 @@ const _nav = [ }, { component: CNavGroup, - name: 'Intune', - to: '/endpoint/intune', + name: 'MEM (Intune)', + to: '/endpoint/MEM', icon: , items: [ { component: CNavItem, - name: 'List Intune Policies', - to: '/endpoint/intune/list-policies', + name: 'List MEM Policies', + to: '/endpoint/MEM/list-policies', }, { component: CNavItem, - name: 'Add Policy', - to: '/endpoint/intune/add-policy', + name: 'Apply Policy', + to: '/endpoint/MEM/add-policy', }, { component: CNavItem, name: 'Add Policy Template', - to: '/endpoint/intune/add-policy-template', + to: '/endpoint/MEM/add-policy-template', }, { component: CNavItem, name: 'List Templates', - to: '/endpoint/intune/list-templates', + to: '/endpoint/MEM/list-templates', }, ], }, diff --git a/src/routes.js b/src/routes.js index 6b06a11bfacf..14476363a96b 100644 --- a/src/routes.js +++ b/src/routes.js @@ -51,11 +51,11 @@ const AutopilotListProfiles = React.lazy(() => const AutopilotListStatusPages = React.lazy(() => import('./views/endpoint/autopilot/AutopilotListStatusPages'), ) -const IntuneListPolicies = React.lazy(() => import('./views/endpoint/intune/IntuneListPolicies')) -const IntuneCAPolicies = React.lazy(() => import('./views/endpoint/intune/IntuneCAPolicies')) -const IntuneAddPolicy = React.lazy(() => import('./views/endpoint/intune/IntuneAddPolicy')) +const IntuneListPolicies = React.lazy(() => import('./views/endpoint/MEM/MEMListPolicies')) +const IntuneCAPolicies = React.lazy(() => import('./views/endpoint/MEM/MEMCAPolicies')) +const IntuneAddPolicy = React.lazy(() => import('./views/endpoint/MEM/MEMAddPolicy')) const IntuneListPolicyTemplate = React.lazy(() => - import('./views/endpoint/intune/IntuneListPolicyTemplate'), + import('./views/endpoint/MEM/MEMListPolicyTemplate'), ) const OneDriveList = React.lazy(() => import('./views/teams-share/onedrive/OneDriveList')) const SharepointList = React.lazy(() => import('./views/teams-share/sharepoint/SharepointList')) @@ -205,26 +205,26 @@ const routes = [ component: AutopilotListStatusPages, }, { - path: '/endpoint/intune', - name: 'Intune', + path: '/endpoint/MEM', + name: 'MEM', }, { - path: '/endpoint/intune/list-policies', + path: '/endpoint/MEM/list-policies', name: 'List Status Pages', component: IntuneListPolicies, }, { - path: '/endpoint/intune/ca-policies', + path: '/endpoint/MEM/ca-policies', name: 'List Status Pages', component: IntuneCAPolicies, }, { - path: '/endpoint/intune/add-policy', + path: '/endpoint/MEM/add-policy', name: 'Add Intune Policy', component: IntuneAddPolicy, }, { - path: '/endpoint/intune/list-templates', + path: '/endpoint/MEM/list-templates', name: 'List Intune Policy Template', component: IntuneListPolicyTemplate, }, diff --git a/src/views/email-exchange/administration/ContactsList.js b/src/views/email-exchange/administration/ContactsList.js index db13bc37b43c..c7aafac99c83 100644 --- a/src/views/email-exchange/administration/ContactsList.js +++ b/src/views/email-exchange/administration/ContactsList.js @@ -80,7 +80,7 @@ const ContactsList = () => {
-

Applications List

+

Contacts List

{Object.keys(tenant).length === 0 && Select a tenant to get started.} {
-

Applications List

+

Mailbox List

{Object.keys(tenant).length === 0 && Select a tenant to get started.} {
-

Applications List

+

Mailbox Client Access Settings

{Object.keys(tenant).length === 0 && Select a tenant to get started.} {
-

Applications List

+

Mailbox Statistics

{Object.keys(tenant).length === 0 && Select a tenant to get started.} { - return
message trace
+ return
Message Trace
} export default MessageTrace diff --git a/src/views/email-exchange/reports/PhishingPoliciesList.js b/src/views/email-exchange/reports/PhishingPoliciesList.js index 5d46b55a8daf..3654ef562ee7 100644 --- a/src/views/email-exchange/reports/PhishingPoliciesList.js +++ b/src/views/email-exchange/reports/PhishingPoliciesList.js @@ -80,7 +80,7 @@ const PhishingPoliciesList = () => {
-

Applications List

+

Phishing Policies

{Object.keys(tenant).length === 0 && Select a tenant to get started.} { return (
-

IntuneAddPolicy

+

Endpoint Manager - Apply Policy

) } diff --git a/src/views/endpoint/intune/IntuneCAPolicies.js b/src/views/endpoint/MEM/MEMCAPolicies.js similarity index 74% rename from src/views/endpoint/intune/IntuneCAPolicies.js rename to src/views/endpoint/MEM/MEMCAPolicies.js index 9f806d7d7e5a..588fc1d7a058 100644 --- a/src/views/endpoint/intune/IntuneCAPolicies.js +++ b/src/views/endpoint/MEM/MEMCAPolicies.js @@ -3,7 +3,7 @@ import React from 'react' const IntuneCAPolicies = (props) => { return (
-

IntuneCAPolicies

+

Endpoint Manager - CA Policies

) } diff --git a/src/views/endpoint/intune/IntuneListPolicies.js b/src/views/endpoint/MEM/MEMListPolicies.js similarity index 96% rename from src/views/endpoint/intune/IntuneListPolicies.js rename to src/views/endpoint/MEM/MEMListPolicies.js index f6a859170374..09c5db92b539 100644 --- a/src/views/endpoint/intune/IntuneListPolicies.js +++ b/src/views/endpoint/MEM/MEMListPolicies.js @@ -40,7 +40,7 @@ const IntuneList = () => {
-

Intune Policy List

+

Endpoint Manager - Policy List

{Object.keys(tenant).length === 0 && Select a tenant to get started.} {

-

Available Intune Templates

+

Available Endpoint Manager Templates

{ return ( +

View User Information

+
{userFetching && } {!userFetching && userError && Error loading user} {!queryError && !userFetching && ( diff --git a/src/views/teams-share/onedrive/OneDriveList.js b/src/views/teams-share/onedrive/OneDriveList.js index 848655733b51..bc25f8ccb4d4 100644 --- a/src/views/teams-share/onedrive/OneDriveList.js +++ b/src/views/teams-share/onedrive/OneDriveList.js @@ -45,7 +45,7 @@ const OneDriveList = () => {
-

Onedrive Report

+

OneDrive Report

{Object.keys(tenant).length === 0 && Select a tenant to get started.} {

-

Applications List

+

Tenant List