Skip to content

Commit

Permalink
add recommended notice regarding the User Data Policy
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Nov 24, 2023
1 parent bb89d78 commit 26da8b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
== Changelog ===

= 1.0.0 =
* Initial release.
9 changes: 7 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,13 @@ const CONFIG_STEPS = <ConfigStep[]>[
},
addControls(config: GoogleAppsScript.Data_Studio.Config) {
// add info explaining that authors of Matomo and the connector do not get access to your data
config.newInfo().setId('privacy-notice')
.setText('The connector can now get your data to Looker Studio, but please note that we, the authors of the connector and Matomo, will NOT have this same access.');
const link = 'https://developers.google.com/terms/api-services-user-data-policy#additional_requirements_for_specific_api_scopes';
config.newInfo().setId('google-info-notice')
.setText(
'Note: The Matomo Connector for Looker Studio\'s use and transfer of information received from Google APIs ' +
`to any other app will adhere to Google API Services User Data Policy (${link}), including the Limited Use ` +
'requirements.'
);

const sitesWithViewAccess = getSitesWithAtLeastViewAccess();

Expand Down

0 comments on commit 26da8b4

Please sign in to comment.