From c31343c8c8979c24c850b53b25c666c3a3014831 Mon Sep 17 00:00:00 2001 From: diosmosis Date: Thu, 29 Feb 2024 17:04:52 -0800 Subject: [PATCH 1/2] change help url for connect form to go to the connection guide --- src/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.ts b/src/auth.ts index 00e21d6..2ddfcef 100644 --- a/src/auth.ts +++ b/src/auth.ts @@ -12,7 +12,7 @@ import { debugLog } from './log'; export function getAuthType() { return cc.newAuthTypeResponse() .setAuthType(cc.AuthType.USER_TOKEN) - .setHelpUrl('https://matomo.org/looker-studio') + .setHelpUrl('https://matomo.org/connect-looker') .build(); } From 2e976d4e5cb0ddaaebf18b3f1523f98143a315eb Mon Sep 17 00:00:00 2001 From: diosmosis Date: Mon, 4 Mar 2024 21:17:12 -0800 Subject: [PATCH 2/2] fix test --- tests/appscript/auth.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/appscript/auth.spec.ts b/tests/appscript/auth.spec.ts index e614560..c36fab5 100644 --- a/tests/appscript/auth.spec.ts +++ b/tests/appscript/auth.spec.ts @@ -52,7 +52,7 @@ describe('auth', () => { it('should return the correct response', async () => { const response = await Clasp.run('getAuthType'); expect(response).toEqual({ - "helpUrl": "https://matomo.org/looker-studio", + "helpUrl": "https://matomo.org/connect-looker", "type": "USER_TOKEN", }); });