From a31b324bf8424c4c4610f055428dd8f17722c29a Mon Sep 17 00:00:00 2001 From: Barrett Burnworth <77902178+pantheredeye@users.noreply.github.com> Date: Fri, 13 Dec 2024 06:32:15 -0600 Subject: [PATCH] chore: remove @requireAuth from lead submission --- api/src/graphql/leads.sdl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/graphql/leads.sdl.ts b/api/src/graphql/leads.sdl.ts index 8dee58d..ed6d471 100644 --- a/api/src/graphql/leads.sdl.ts +++ b/api/src/graphql/leads.sdl.ts @@ -25,7 +25,7 @@ export const schema = gql` } type Mutation { - createLead(input: CreateLeadInput!): Lead! @requireAuth + createLead(input: CreateLeadInput!): Lead! updateLead(id: Int!, input: UpdateLeadInput!): Lead! @requireAuth deleteLead(id: Int!): Lead! @requireAuth }