mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
28 lines
1 KiB
Lua
28 lines
1 KiB
Lua
--
|
|
-- (C) 2019-20 - ntop.org
|
|
--
|
|
|
|
return {
|
|
endpoint_key = "webhook",
|
|
entries = {
|
|
toggle_webhook_notification = {
|
|
title = i18n("prefs.toggle_webhook_notification_title"),
|
|
description = i18n("prefs.toggle_webhook_notification_description"),
|
|
}, webhook_notification_severity_preference = {
|
|
title = i18n("prefs.webhook_notification_severity_preference_title"),
|
|
description = i18n("prefs.webhook_notification_severity_preference_description"),
|
|
}, webhook_url = {
|
|
title = i18n("prefs.webhook_url_title"),
|
|
description = i18n("prefs.webhook_url_description"),
|
|
}, webhook_sharedsecret = {
|
|
title = i18n("prefs.webhook_sharedsecret_title"),
|
|
description = i18n("prefs.webhook_sharedsecret_description"),
|
|
}, webhook_username = {
|
|
title = i18n("login.username"),
|
|
description = i18n("prefs.webhook_username_description"),
|
|
}, webhook_password = {
|
|
title = i18n("login.password"),
|
|
description = i18n("prefs.webhook_password_description"),
|
|
}
|
|
}
|
|
}
|