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(); } 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", }); });