-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.ts
36 lines (35 loc) · 955 Bytes
/
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
import { Manifest } from "deno-slack-sdk/mod.ts";
import { RenameChannelWorkflow } from "./workflows/rename_channel.ts";
import { SyncGoogleGroupsWorkflow } from "./workflows/sync_google_groups.ts";
import ArchiveCreateWorkflow from "./workflows/archive_create_channel.ts";
export default Manifest({
name: "Tikal Bot",
description: "Keep channel naming conventions aligned",
icon: "assets/default_new_app_icon.png",
workflows: [
RenameChannelWorkflow,
ArchiveCreateWorkflow,
SyncGoogleGroupsWorkflow
],
outgoingDomains: [],
botScopes: [
"chat:write",
"chat:write.public",
"channels:read",
"triggers:write",
"triggers:read",
"groups:read",
"groups:write.invites",
"im:read",
"mpim:read",
"mpim:write",
"mpim:write.invites",
"users:read",
"channels:manage",
"channels:join",
"channels:write.invites",
"groups:write",
"usergroups:write",
"im:write",
],
});