From cd5ef6fcbc305217877cc415247ec6dd05d3a3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 9 Jun 2025 23:41:44 +0200 Subject: [PATCH] more words and change API endpoint from SetUserAliases to EditUserAliases in exchange.jsx --- cspell.json | 1 + src/pages/identity/administration/users/user/exchange.jsx | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cspell.json b/cspell.json index eceff3b941ec..d70fdf953cf8 100644 --- a/cspell.json +++ b/cspell.json @@ -9,6 +9,7 @@ "Augmentt", "Autotask", "Choco", + "cipp", "CIPP", "CIPP-API", "Datto", diff --git a/src/pages/identity/administration/users/user/exchange.jsx b/src/pages/identity/administration/users/user/exchange.jsx index 67f9d28e88ad..9c0a1e0b86e9 100644 --- a/src/pages/identity/administration/users/user/exchange.jsx +++ b/src/pages/identity/administration/users/user/exchange.jsx @@ -102,7 +102,7 @@ const Page = () => { // Define API configurations for the dialogs const aliasApiConfig = { type: "POST", - url: "/api/SetUserAliases", + url: "/api/EditUserAliases", relatedQueryKeys: `ListUsers-${userId}`, confirmText: "Add the specified proxy addresses to this user?", customDataformatter: (row, action, formData) => { @@ -604,7 +604,7 @@ const Page = () => { label: "Make Primary", type: "POST", icon: , - url: "/api/SetUserAliases", + url: "/api/EditUserAliases", data: { id: userId, tenantFilter: userSettingsDefaults.currentTenant, @@ -619,7 +619,7 @@ const Page = () => { label: "Remove Proxy Address", type: "POST", icon: , - url: "/api/SetUserAliases", + url: "/api/EditUserAliases", data: { id: userId, tenantFilter: userSettingsDefaults.currentTenant,