Skip to content

Commit

Permalink
fix(api): module import
Browse files Browse the repository at this point in the history
  • Loading branch information
waltergalvao committed Jan 30, 2025
1 parent 2bd655d commit 809b671
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { validateInputOrThrow } from "../../../../lib/validate-input";
import { protectWithPaywall } from "../../../billing/services/billing.service";
import { authorizeWorkspaceOrThrow } from "../../../workspace-authorization.service";
import { sendTestMessage } from "../../slack/services/slack-integration.service";
import { IntegrationApp } from "@sweetr/graphql-types/api";

export const sendTestMessageMutation = createMutationResolver({
sendTestMessage: async (_, { input }, context) => {
Expand All @@ -15,7 +14,6 @@ export const sendTestMessageMutation = createMutationResolver({
z.object({
workspaceId: z.number(),
channel: z.string().max(80),
app: z.nativeEnum(IntegrationApp),
}),
input
);
Expand Down

0 comments on commit 809b671

Please sign in to comment.