1
Set Channel Purpose
One script reply has been approved by the moderators Verified
Created by jeanmatinada 661 days ago Viewed 2655 times
0
Submitted by rossmccrann Deno
Verified 647 days ago
1
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
2

3
type Slack = {
4
  token: string;
5
};
6
export async function main(
7
  slack_auth: Slack,
8
  channel: string,
9
  purpose: string
10
) {
11
  const web = new WebClient(slack_auth.token);
12

13
  await web.conversations.setPurpose({
14
    channel: channel,
15
    purpose: purpose,
16
  });
17

18
  return { message: "Successfully updated channel purpose" };
19
}
20