From 8e80c0ea7dba3aead8ed7364e2dee7d943186cf3 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 13 Jan 2026 08:00:50 -0500 Subject: [PATCH] Fix GraphQL create project name validation --- graphql/schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/schema.graphql b/graphql/schema.graphql index efbb5f56d7..7f322fa194 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -206,7 +206,7 @@ enum ProjectVisibility { input CreateProjectInput { "Unique name." - name: String! @rules(apply: ["App\\Rules\\ProjectVisibilityRule"]) + name: String! @rules(apply: ["App\\Rules\\ProjectNameRule"]) "Description." description: String!