Skip to content

Commit

Permalink
Add manifest.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Rindrics committed Jun 9, 2024
1 parent 7726d30 commit f4100f0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions manifest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Manifest } from "deno-slack-sdk/mod.ts";
import { RegisterMessageWorkflow } from "./workflows/register_message_workflow.ts";

export default Manifest({
name: "success-notification-aggregator",
description: "Consolidates success notifications into a single, reliable report",
icon: "assets/default_new_app_icon.png",
workflows: [RegisterMessageWorkflow],
outgoingDomains: [],
botScopes: ["commands", "chat:write", "chat:write.public"],
});

0 comments on commit f4100f0

Please sign in to comment.