Skip to content

Commit

Permalink
Amend Page Names + Change Intune to MEM
Browse files Browse the repository at this point in the history
Amended a number of page headings, updated Intune to reflect MEM name where possible
  • Loading branch information
AdamImpelling committed Dec 12, 2021
1 parent 2b35f9a commit c9ddcea
Show file tree
Hide file tree
Showing 15 changed files with 33 additions and 31 deletions.
18 changes: 9 additions & 9 deletions src/_nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const _nav = [
},
{
component: CNavItem,
name: 'Best Practice Analyzer',

This comment has been minimized.

Copy link
@k-grube

k-grube Dec 12, 2021

Contributor

almost snuck one in 😉

name: 'Best Practice Analyser',
to: '/tenant/standards/bpa-report',
},
{
Expand Down Expand Up @@ -201,29 +201,29 @@ const _nav = [
},
{
component: CNavGroup,
name: 'Intune',
to: '/endpoint/intune',
name: 'MEM (Intune)',
to: '/endpoint/MEM',
icon: <FontAwesomeIcon icon={faExchangeAlt} className="nav-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',
},
],
},
Expand Down
20 changes: 10 additions & 10 deletions src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down Expand Up @@ -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,
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/email-exchange/administration/ContactsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const ContactsList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Contacts List</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
2 changes: 1 addition & 1 deletion src/views/email-exchange/administration/MailboxesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const MailboxesList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Mailbox List</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const MailboxClientAccessSettingsList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Mailbox Client Access Settings</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
2 changes: 1 addition & 1 deletion src/views/email-exchange/reports/MailboxStatisticsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const MailboxStatisticsList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Mailbox Statistics</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
2 changes: 1 addition & 1 deletion src/views/email-exchange/reports/MessageTrace.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'

const MessageTrace = () => {
return <div>message trace</div>
return <div>Message Trace</div>
}

export default MessageTrace
2 changes: 1 addition & 1 deletion src/views/email-exchange/reports/PhishingPoliciesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const PhishingPoliciesList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Phishing Policies</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react'
const IntuneAddPolicy = (props) => {
return (
<div>
<h3>IntuneAddPolicy</h3>
<h3>Endpoint Manager - Apply Policy</h3>
</div>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react'
const IntuneCAPolicies = (props) => {
return (
<div>
<h3>IntuneCAPolicies</h3>
<h3>Endpoint Manager - CA Policies</h3>
</div>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const IntuneList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Intune Policy List</h3>
<h3>Endpoint Manager - Policy List</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const AutopilotListTemplates = () => {
<div>
<hr />
<div className="bg-white rounded p-5">
<h3>Available Intune Templates</h3>
<h3>Available Endpoint Manager Templates</h3>
<CippDatatable
keyField="id"
reportName={`${tenant?.defaultDomainName}-Autopilot-List`}
Expand Down
2 changes: 2 additions & 0 deletions src/views/identity/administration/ViewUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ const ViewUser = (props) => {

return (
<CCard className="bg-white rounded p-5">
<h3>View User Information</h3>
<br />
{userFetching && <CSpinner />}
{!userFetching && userError && <span>Error loading user</span>}
{!queryError && !userFetching && (
Expand Down
2 changes: 1 addition & 1 deletion src/views/teams-share/onedrive/OneDriveList.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const OneDriveList = () => {
<TenantSelector />
<hr />
<div className="bg-white rounded p-5">
<h3>Onedrive Report</h3>
<h3>OneDrive Report</h3>
{Object.keys(tenant).length === 0 && <span>Select a tenant to get started.</span>}
<CippDatatable
keyField="id"
Expand Down
2 changes: 1 addition & 1 deletion src/views/tenant/administration/Tenants.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const TenantsList = () => {
<div>
<hr />
<div className="bg-white rounded p-5">
<h3>Applications List</h3>
<h3>Tenant List</h3>
<CippDatatable
keyField="id"
reportName={`${tenant?.defaultDomainName}-Autopilot-List`}
Expand Down

0 comments on commit c9ddcea

Please sign in to comment.