From e5a5a2f3ccaa4bb5e99faf9f6c0efb857d5ebf75 Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Tue, 13 Jan 2026 08:42:58 -0500 Subject: [PATCH] Deprecate ldapFilter argument in createProject mutation --- graphql/schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/schema.graphql b/graphql/schema.graphql index efbb5f56d7..de26663e09 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -224,7 +224,7 @@ input CreateProjectInput { authenticateSubmissions: Boolean! @rename(attribute: "authenticatesubmissions") @rules(attribute: "authenticatesubmissions", apply: ["App\\Rules\\ProjectAuthenticateSubmissionsRule"]) "A LDAP group users must be a member of to access the project." - ldapFilter: String @rename(attribute: "ldapfilter") + ldapFilter: String @deprecated(reason: "This field will be removed in the next major version of CDash.") @rename(attribute: "ldapfilter") }