diff --git a/src/components/omniSidebarNav/getOmniItems.js b/src/components/omniSidebarNav/getOmniItems.js index 6381425b65..e17bd69aa3 100644 --- a/src/components/omniSidebarNav/getOmniItems.js +++ b/src/components/omniSidebarNav/getOmniItems.js @@ -18,7 +18,6 @@ import { simpleLink } from './helpers'; // Todo: review reporting in console log - Assigned to Steve to investigate // Todo: Review pages that are reported as unassigned // Todo: remove console logging from this component. -// Todo, add search bar back to landing pages // todo, delete pagesToDelete and unassignedPages /** diff --git a/src/components/omniSidebarNav/index.js b/src/components/omniSidebarNav/index.js index 1ddf51b805..75378512e6 100644 --- a/src/components/omniSidebarNav/index.js +++ b/src/components/omniSidebarNav/index.js @@ -38,6 +38,7 @@ const OmniSidebarNav = ({ /.*\/contributors\/.*/, /.*\/release-notes\/.*/, /.*\/iframeembeds\/.*/, + /.*\/search\/.*/, /.*\/terminus\/commands\/.*/, ]; diff --git a/src/components/omniSidebarNav/submenus/support.js b/src/components/omniSidebarNav/submenus/support.js index 92e81983d0..7fe496e6d4 100644 --- a/src/components/omniSidebarNav/submenus/support.js +++ b/src/components/omniSidebarNav/submenus/support.js @@ -41,6 +41,7 @@ const support = () => { ]), simpleLink('/mime-types', 'MIME Types'), simpleLink('/resetting-passwords', 'Resetting Passwords'), + simpleLink('/local-dns-cache', 'Local DNS Cache'), ]), simpleLink('/performance', 'Performance Troubleshooting', [ simpleLink('/performance', 'Overview'), @@ -112,6 +113,8 @@ const support = () => { 'Migrate a Composer-based Drupal Site to a Build Tools Site', ), ]), + simpleLink('/monthly-maintenance', "Pantheon's Monthly Maintenance"), + ], }; }; diff --git a/src/components/omniSidebarNav/submenus/workflows.js b/src/components/omniSidebarNav/submenus/workflows.js index 5e3fb9c891..6d2e73ee34 100644 --- a/src/components/omniSidebarNav/submenus/workflows.js +++ b/src/components/omniSidebarNav/submenus/workflows.js @@ -51,6 +51,7 @@ const workflows = () => { getGuideDirectory('guides/backups'), // Maybe make this a separate category for local development getGuideDirectory('guides/local-development', 'Local Development'), + simpleLink('/content-publisher', 'Content Publisher'), ], }; };