From 42b186e24a9fe6ee1bc532f2831d08d3d1bed434 Mon Sep 17 00:00:00 2001 From: Kazuhiro Sera Date: Thu, 18 Mar 2021 13:28:09 +0900 Subject: [PATCH] Update the description about processBeforeResponse --- docs/_tutorials/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_tutorials/reference.md b/docs/_tutorials/reference.md index 0f66173ee..2d6cf0bcc 100644 --- a/docs/_tutorials/reference.md +++ b/docs/_tutorials/reference.md @@ -89,7 +89,7 @@ Bolt includes a collection of initialization options to customize apps. There ar | :---: | :--- | | `signingSecret` | A `string` from your app's configuration (under "Basic Information") which verifies that incoming events are coming from Slack | | `endpoints` | A `string` or `object` that specifies the endpoint(s) that the receiver will listen for incoming requests from Slack. Currently, the only key for the object is `key`, the value of which is the customizable endpoint (ex: `/myapp/events`). **By default, all events are sent to the `/slack/events` endpoint** | -| `processBeforeResponse` | `boolean` that determines whether Events API events should be automatically acknowledged. This is primarily useful when running apps on FaaS to ensure events listeners don't unexpectedly terminate. Defaults to `true`. | +| `processBeforeResponse` | `boolean` that determines whether events should be immediately acknowledged. This is primarily useful when running apps on FaaS to ensure events listeners don't unexpectedly terminate by setting it to `false`. Defaults to `true`. | | `clientId` | The client ID `string` from your app's configuration which is [required to configure OAuth](/bolt-js/concepts#authenticating-oauth). | | `clientSecret` | The client secret `string` from your app's configuration which is [required to configure OAuth](/bolt-js/concepts#authenticating-oauth). | | `stateSecret` | Recommended parameter (`string`) that's passed when [configuring OAuth](/bolt-js/concepts#authenticating-oauth) to prevent CSRF attacks |