From df58fd140250512990762381b0c30fbf4398f5f7 Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Wed, 21 May 2025 11:14:20 -0400 Subject: [PATCH] BRP: Fix bad path used in batch-resend call (#29305) --- frontend/utilities/endpoints.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/utilities/endpoints.ts b/frontend/utilities/endpoints.ts index 56d23a0b51..4b2bb6b161 100644 --- a/frontend/utilities/endpoints.ts +++ b/frontend/utilities/endpoints.ts @@ -282,5 +282,5 @@ export default { `/${API_VERSION}/fleet/configuration_profiles/${uuid}`, CONFIG_PROFILE_STATUS: (uuid: string) => `/${API_VERSION}/fleet/configuration_profiles/${uuid}/status`, - CONFIG_PROFILE_BATCH_RESEND: `/${API_VERSION}/fleet/configuration_profiles/batch/resend`, + CONFIG_PROFILE_BATCH_RESEND: `/${API_VERSION}/fleet/configuration_profiles/resend/batch`, };