- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getSlackWebhookUrls (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
// Setup mock configuration with blank webhook URLs ComponentUtil.setFessConfig(new MockFessConfig() { @Override public String getSlackWebhookUrls() { return ""; } }); MockSMailPostingDiscloser discloser = new MockSMailPostingDiscloser(); // Should return early without doing anything try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 20K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return StringUtil.isNotBlank(getNotificationTo()) || StringUtil.isNotBlank(getSlackWebhookUrls()) || StringUtil.isNotBlank(getGoogleChatWebhookUrls()); } default void setSlackWebhookUrls(final String value) { setSystemProperty(Constants.SLACK_WEBHOOK_URLS_PROPERTY, value); } default String getSlackWebhookUrls() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
// https://api.slack.com/messaging/webhooks#posting_with_webhooks final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String slackWebhookUrls = fessConfig.getSlackWebhookUrls(); if (StringUtil.isBlank(slackWebhookUrls)) { return; } final String body = toSlackMessage(discloser);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.2K bytes - Click Count (0)