This product was formerly known as Sentinel. There are several references to Sentinel in the backend code, but everything on that is client-facing will say Banno Monitor.

JSON

You will first need to add the SENTINEL component to the list of features, in the same place as the menu builder, forms, treasury, etc. components are listed. When building a brand new site this will need to be added into your -make.json file. If you’re adding to a site after it’s been on UAT, you’ll need to add it to the institution via Postman.

If this is a brand new site, you will also need to add showSentinel: true to each page’s JSON.

"templateId": "",
"showSentinel": true,
"content": []

BANNO TAG FOR HTML

  • The badge tag is not required for Monitor to function. Only add if the design calls for it.

  • There are two variations based on the background where the badge is placed.

    Light

    <banno:sentinel-badge data-theme="light"></banno:sentinel-badge>

    • Badge placed on a light background
    • Generates a dark gray badge and dark gray text

    Dark

    <banno:sentinel-badge data-theme="dark"></banno:sentinel-badge>

    • Badge placed on a dark background
    • Generates a white badge and white text

DEV ONLY

Use the following as placeholder to test locally and see how it will show, keeping in mind the colors will change based on the theme.

<div id="sentinel-badge" data-theme="dark">
  <a title="Monitor Scan Details" style="cursor: pointer;">
    <img alt="Banno Monitor" title="Scanned by Banno Monitor" width="88" height="31" src="https://uat.banno.com/a/monitor/api/badge/monitor-badge-dark.png">
    <span style="display:block;font-family:sans-serif;font-size:10px;color:white;">Verified: Apr 7, 2020</span>
  </a>
</div>