Skip to main content

How to Create a Plugin

You can create a new plugin by following these steps:

Step 1 - Create the plugin folder

Create a new folder for your plugin in /TemenosExplorer/public/plugins/. The name of the folder is important as this will be added to configuration files later.

Step 2 - Create index.html file

Create an index.html file in your plugin folder. The content of the index.html file is what will be rendered in Temenos Explorer when the plugin is selected from the menu.

Step 3 - Define a role in Keycloak (if required)

You may need to define new roles for your application in Keycloak. Please see the how to set up Keycloak user guide for more information on this.

Step 4 - Map users to role in Keycloak (if required)

If you created a new role you will need to map users to this role so that when they login to Temenos Explorer they will be associated with the role and have the required permissions. Please see the how to set up Keycloak user guide for more information on this.

Step 5 - Add a menu item

To access the plugin a menu item needs to be created. Please see the how to add a menu item user guide for more information on this.

Step 6 - Add permissions

Users logged in with the role created for your application will need to be granted permissions to see the menu item and perform application specific actions. Please see the how to configure role permissions user guide for more information on this.