@@ -28,7 +28,9 @@ Steps to create a Slack App for a non-production CodeStream environment.
2828 them.
2929 * Add the following Redirect URL:
3030 - `https://<codestream-api-host>/no-auth/provider-token/slack`
31- * Add the following Scopes and save them (Request reasons included here):
31+ * Add the following Scopes and save them (Request reasons included
32+ here). _NOTE: the source of truth for the list of scopes is [here]().
33+ You should verify this list accordingly._
3234 - **channels:read** - We allow users to select a public channel to share
3335 to.
3436 - **chat:write** - Users can send a copy of their messages from
@@ -56,7 +58,7 @@ workspaces that wish to connect with the corresponding CodeStream environment.
5658## Update the CodeStream Configuration
5759
5860Finally, add the secrets and configuration data to the CodeStream API server's
59- configuration file. The following data is needed:
61+ configuration file in the ** integrations ** section.
6062
6163From the ** Basic Information** page of the Slack App, get these data and add
6264them to the CodeStream configuration file.
@@ -67,6 +69,31 @@ them to the CodeStream configuration file.
6769- Signing Secret
6870
6971
72+ ```
73+ {
74+ "integrations": {
75+ "slack": {
76+ "cloud": {
77+ "appClientId": null,
78+ "appClientSecret": null,
79+ "appId": null,
80+ "appSharingClientId": "*******************************",
81+ "appSharingClientSecret": "********************************",
82+ "appSharingId": "***************************",
83+ "appSharingSigningSecret": "**************************",
84+ "appSigningSecret": null,
85+ "appStrictClientId": null,
86+ "appStrictClientSecret": null,
87+ "appStrictId": null,
88+ "appStrictSigningSecret": null,
89+ "disabled": false,
90+ "interactiveComponentsEnabled": true
91+ }
92+ }
93+ }
94+ }
95+ ```
96+
7097## Permalink to Code Requesting Auth
7198
7299This is the _ source of truth_ where slack access is concerned.
0 commit comments