-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.ts
40 lines (39 loc) · 1.53 KB
/
manifest.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { Manifest } from "deno-slack-sdk/mod.ts";
import { runFromExternalWebhook } from "./workflows/incoming-webhook-incident.ts";
import { postIncidentFromButtonWF } from "./workflows/button-create-incident-wf.ts";
import {
AuditIncidents,
Incident,
SalesforceAuth,
} from "./datastore/definition.ts";
import { getIncidentReportButtonWF } from "./workflows/button-create-incident-report.ts";
export default Manifest({
name: "Incident Response",
description: "Handles Incident Response",
icon: "assets/icon.png",
//Three main workflows for this app.
//postIncidentFromButtonWF creates an incident manually from button click
//runFromExternalWebhook creates an incident from an external service, automatically, via webhook.
//getIncidentReportButtonWF posts an ephemeral message with analytics of all of the incidents stored in the DataStore.
workflows: [
runFromExternalWebhook,
postIncidentFromButtonWF,
getIncidentReportButtonWF,
],
//Add URLs from .env `ATLASSIAN_INSTANCE`, `SALESFORCE_INSTANCE_URL`, and "login.salesforce.com"
//change these outgoingDomains to correspond with your own Atlassian / Salesforce instance
outgoingDomains: [],
datastores: [Incident, AuditIncidents, SalesforceAuth],
//Scopes needed for app to update datastore, create channels, create calls (Zoom), and create bookmarks
botScopes: [
"commands",
"chat:write",
"chat:write.public",
"datastore:read",
"datastore:write",
"channels:manage",
"calls:write",
"triggers:write",
"bookmarks:write",
],
});