Skip to content

Commit

Permalink
Renamed dashboard popup texts
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Nov 1, 2023
1 parent 3b4ab9c commit 798e2ce
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions lib/routes-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -778,65 +778,49 @@ function applyRoutes(server, call) {
title: 'New emails',
color: 'primary',
icon: 'envelope',
comment: 'New email found on IMAP mailboxes'
comment: 'Detected new emails in IMAP mailboxes.'
},

/*
{
key: 'events:messageDeleted',
title: 'Deleted messages',
color: 'primary',
icon: 'envelope',
comment: 'Message deletions detected from IMAP mailboxes'
},
*/

{
key: 'webhooks:success',
title: 'Webhooks sent',
color: 'primary',
icon: 'network-wired',
comment: 'The number of webhooks delivered to target URL'
comment: 'Count of successfully delivered webhooks.'
},

{
key: 'webhooks:fail',
title: 'Webhooks failed',
color: 'danger',
icon: 'network-wired',
comment: 'The number of failed webhook delivery attempts'
comment: 'Count of webhooks that failed to deliver.'
},

{
key: 'submit:success',
title: 'Emails sent',
color: 'primary',
icon: 'mail-bulk',
comment: 'The number of emails accepted by MTA servers'
comment: 'Count of emails sent to MTA servers.'
},

{
key: 'submit:fail',
title: 'Emails rejected',
color: 'danger',
icon: 'mail-bulk',
comment: 'The number of emails that were not delivered to the MTA servers'
comment: 'Count of emails rejected by MTA servers.'
},

{
key: 'apiCall:success',
title: 'Successful API calls',
color: 'primary',
icon: 'file-code',
comment: 'The number of API calls that yielded with a success response'
comment: 'Successful API calls with positive responses.'
},

{
key: 'apiCall:fail',
title: 'Failed API calls',
color: 'danger',
icon: 'file-code',
comment: 'The number of API calls that yielded with an error response'
comment: 'API calls that returned error responses.'
}
];

Expand Down

0 comments on commit 798e2ce

Please sign in to comment.