Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for webhooks (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

         * @param discloser the mail posting discloser
         */
        protected void sendToSlack(final CardView cardView, final SMailPostingDiscloser discloser) {
            // https://api.slack.com/messaging/webhooks#posting_with_webhooks
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String slackWebhookUrls = fessConfig.getSlackWebhookUrls();
            if (StringUtil.isBlank(slackWebhookUrls)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Kube-apiserver: Authorization webhooks now report the following metrics:
      - apiserver_authorization_webhook_evaluations_total
      - apiserver_authorization_webhook_duration_seconds
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kube-apiserver: timeouts configured for authorization webhooks in the --authorization-config file are now honored, and webhook timeouts are accurately reflected in webhook metrics with result=timeout ([#125552](https://github.com/kubernetes/kubernetes/pull/125552), [@liggitt](https://github.com/liggitt)) [SIG API Machinery, Auth and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

            super.setUp();
            notificationHelper = new NotificationHelper();
        }
    
        public void test_sendToSlack_withBlankWebhookUrls() {
            // Setup mock configuration with blank webhook URLs
            ComponentUtil.setFessConfig(new MockFessConfig() {
                @Override
                public String getSlackWebhookUrls() {
                    return "";
                }
            });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Property key for Slack webhook URLs configuration. */
        public static final String SLACK_WEBHOOK_URLS_PROPERTY = "slack.webhook.urls";
    
        /** Property key for Google Chat webhook URLs configuration. */
        public static final String GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY = "google.chat.webhook.urls";
    
        /** Property key for browser locale usage in search configuration. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.34.md

    - Changed apiserver to treat failures decoding a mutating webhook patch as failures to call the webhook so they trigger the webhook failurePolicy and count against metrics like `webhook_fail_open_count` ([#131627](https://github.com/kubernetes/kubernetes/pull/131627), [@dims](https://github.com/dims)) [SIG API Machinery]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Added support for CEL expressions to `v1alpha1 AuthorizationConfiguration` webhook `matchConditions`. ([#121223](https://github.com/kubernetes/kubernetes/pull/121223), [@ritazh](https://github.com/ritazh))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.32.md

    - kube-apiserver: Promoted `AuthorizeWithSelectors` feature to beta, which includes field and label selector information from requests in webhook authorization calls. Promoted `AuthorizeNodeWithSelectors` feature to beta, which changes node authorizer behavior to limit requests from node API clients, so that each Node can only get / list / watch its own Node API object, and can also only get...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
Back to top