Show Security settings tab on Intel environment

According to Intel requirements we should add tab which allows user to enable and disable IPMI and SSH.

Signed-off-by: MichalX Szopinski <michalx.szopinski@intel.com>
Change-Id: I60cb6009665861258aa70d5061f5bae042d95abc
diff --git a/src/env/components/AppNavigation/intel.js b/src/env/components/AppNavigation/intel.js
index 7b75850..7144487 100644
--- a/src/env/components/AppNavigation/intel.js
+++ b/src/env/components/AppNavigation/intel.js
@@ -107,6 +107,11 @@
               label: this.$t('appNavigation.networkSettings'),
               route: '/configuration/network-settings',
             },
+            {
+              id: 'security-settings',
+              label: this.$t('appNavigation.securitySettings'),
+              route: '/configuration/security-settings',
+            },
           ],
         },
         {
diff --git a/src/env/router/intel.js b/src/env/router/intel.js
index cc84e50..53f6154 100644
--- a/src/env/router/intel.js
+++ b/src/env/router/intel.js
@@ -17,6 +17,7 @@
 import PageNotFound from '@/views/PageNotFound';
 import ProfileSettings from '@/views/ProfileSettings';
 import RebootBmc from '@/views/Control/RebootBmc';
+import SecuritySettings from '@/views/Configuration/SecuritySettings';
 import Sensors from '@/views/Health/Sensors';
 import SerialOverLan from '@/views/Control/SerialOverLan';
 import SerialOverLanConsole from '@/views/Control/SerialOverLan/SerialOverLanConsole';
@@ -187,6 +188,14 @@
         },
       },
       {
+        path: '/configuration/security-settings',
+        name: 'security-settings',
+        component: SecuritySettings,
+        meta: {
+          title: i18n.t('appPageTitle.securitySettings'),
+        },
+      },
+      {
         path: '/control/reboot-bmc',
         name: 'reboot-bmc',
         component: RebootBmc,