From 321556f35953cb9487d0be1f698edf45c6d1cdbb Mon Sep 17 00:00:00 2001 From: Sreekanth K K Date: Wed, 6 May 2026 10:06:21 +0530 Subject: [PATCH 1/2] updated error message --- ui/app/utils/message-from-adapter-error.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/utils/message-from-adapter-error.js b/ui/app/utils/message-from-adapter-error.js index 3b6a4f5f779..a5259c8c55f 100644 --- a/ui/app/utils/message-from-adapter-error.js +++ b/ui/app/utils/message-from-adapter-error.js @@ -8,7 +8,7 @@ import { ForbiddenError } from '@ember-data/adapter/error'; // Returns a single string based on the response the adapter received export default function messageFromAdapterError(error, actionMessage) { if (error instanceof ForbiddenError) { - return `Your ACL token does not grant permission to ${actionMessage}.`; + return `Your ACL token does not grant permission to ${actionMessage}. Please ensure you are signed in.`; } if (error.errors?.length) { From 574573ebc474d99b47a4520ca93262024ab89d4c Mon Sep 17 00:00:00 2001 From: Sreekanth K K Date: Wed, 6 May 2026 10:54:58 +0530 Subject: [PATCH 2/2] updated test file --- ui/tests/unit/utils/message-from-adapter-error-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/tests/unit/utils/message-from-adapter-error-test.js b/ui/tests/unit/utils/message-from-adapter-error-test.js index 0c597840a3a..1da3a83dece 100644 --- a/ui/tests/unit/utils/message-from-adapter-error-test.js +++ b/ui/tests/unit/utils/message-from-adapter-error-test.js @@ -11,7 +11,7 @@ const testCases = [ { name: 'Forbidden Error', in: [new ForbiddenError([], "Can't do that"), 'run tests'], - out: 'Your ACL token does not grant permission to run tests.', + out: 'Your ACL token does not grant permission to run tests. Please ensure you are signed in.', }, { name: 'Generic Error',