Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
C:\ProgramData\itsense\Templates\AdminUI2\theme.css

Progressive Web Application

The user has the option to add the portal as a PWA (Progressive Web Application) to it’s home screen. If you would like to define a custom name, custom start path or other settings for that PWA, you can adjust the manifest file:

Code Block
C:\ProgramData\ITSENSE\Templates\AdminUI2\manifest.json

Below is a sample configuration that you can use as a template.

Code Block
{
  "name": "CoreOne Suite Administration",
  "short_name": "CoreOne Suite",
  "start_url": "/",
  "display": "standalone",
  "background_color": "#ffffff",
  "theme_color": "#213A5C",
  "icons": [
    {
      "src": "icon-192x192.png",
      "sizes": "192x192",
      "type": "image/png"
    }
  ]
}

Translation

If you want to change any of the texts, you can do so by changing the appropriate translation files located in the following directory:

...

There is also a step by step how-to article.

Fav-Icon

If you want to customise the fav icon, you can do so by editing the manifest.json file and adding the fav icon to the following directory:

Code Block
C:\ProgramData\ITSENSE\Templates\AdminUI2\

The fav icon must be named “favion.ico”. It must also be of type "ico".

In the manifest.json file, add the following section:

Code Block
    "icons": [
      {
        "src": "favion.ico",
        "sizes": "192x192",
        "type": "image/ico"
      }
    ]

After any changes have been made, restart the Web Service App-Pool and the changes will take effect.