cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
In some cases, we'd like to be able to customize the Slack notification footer to include our own company name.
By default, Sisense sends the alert with the footer "Sisense Alerts" as can be seen in the screenshot below:
mceclip0.png
How do I customize the footer?
 In version 7.2 and above, open  %ProgramFiles%\Sisense\app\galaxy-service\src\features\alerts\eventSubscriptions\actionCenter.js
 line 102:
 sendToSlack(user, alert, event) {
        var message = this.getNotificationData(alert, event, user).message;
        var data = {
            'username' : 'Sisense',
            'attachments': [
                {
                    'fallback': message,
                    'color': '#ffcb05',
                    'text': message,
                    'footer': 'Sisense Alerts',<------------ CHANGE FOOTER HERE
                    'mrkdwn_in': ['text', 'pretext']
                }
            ]
        };
....
Then restart Sisense.Galaxy service.
Rate this article:
Version history
Last update:
‎02-09-2024 10:23 AM
Updated by:
Contributors