From 849fe37b9bb0dd8ff4c45a3f5b44a8caec668641 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Tue, 22 May 2018 23:25:12 +0200 Subject: [PATCH 1/4] Fix incorrect statement regarding GDPR GDPR's reach doesn't depend on the person or business's location, but on whether this person or this business include european citizen in its target (which can be easy to state for a business, but not that much for an individual). --- docs/source/03-08-gdpr.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/03-08-gdpr.md b/docs/source/03-08-gdpr.md index b6689be0e..b5e4ca404 100644 --- a/docs/source/03-08-gdpr.md +++ b/docs/source/03-08-gdpr.md @@ -11,9 +11,9 @@ can enable the following plugins: - [talk-plugin-local-auth](/talk/plugin/talk-plugin-local-auth) - to facilitate email changes and email association - [talk-plugin-profile-data](/talk/plugin/talk-plugin-profile-data) - to facilitate account download and deletion -Even if you don't reside in a location where GDPR will apply, it is recommended -to enable these features as a best practice to provide your users with control over their -own data. +Even if GDPR will not apply apply to you, it is recommended to enable these +features as a best practice to provide your users with control over their own +data. ## GPDR Feature Overview From 879865a4c11dac27d79330cfb86aa7ea5a2e85f6 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 23 May 2018 09:14:32 +0200 Subject: [PATCH 2/4] Fix broken link to tokenusernotfound Fix broken link to tokenusernotfound --- docs/source/integrating/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/integrating/authentication.md b/docs/source/integrating/authentication.md index b7340caf5..5b19768fe 100644 --- a/docs/source/integrating/authentication.md +++ b/docs/source/integrating/authentication.md @@ -81,5 +81,5 @@ example issuer and Talk must match: reference, the basic takeaway is that the secret used to sign the tokens issued by the issuer must be able to be verified by Talk. -For an example of implementing the plugin, refer to [`tokenUserNotFound`](/talk/reference/server/#tokenUserNotFound) +For an example of implementing the plugin, refer to [`tokenUserNotFound`](/talk/api/server/#tokenusernotfound) reference. From a95d55b6da8ce18285d6421f1ca071396de952ee Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Wed, 23 May 2018 10:05:21 +0200 Subject: [PATCH 3/4] Remuve dupe "apply" --- docs/source/03-08-gdpr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/03-08-gdpr.md b/docs/source/03-08-gdpr.md index b5e4ca404..e3fd8623f 100644 --- a/docs/source/03-08-gdpr.md +++ b/docs/source/03-08-gdpr.md @@ -11,7 +11,7 @@ can enable the following plugins: - [talk-plugin-local-auth](/talk/plugin/talk-plugin-local-auth) - to facilitate email changes and email association - [talk-plugin-profile-data](/talk/plugin/talk-plugin-profile-data) - to facilitate account download and deletion -Even if GDPR will not apply apply to you, it is recommended to enable these +Even if GDPR will not apply to you, it is recommended to enable these features as a best practice to provide your users with control over their own data. From f7f6ed635c0e9f699f97d5d5996b851eb91a9381 Mon Sep 17 00:00:00 2001 From: Erik Reyna Date: Wed, 23 May 2018 14:24:11 -0400 Subject: [PATCH 4/4] add from to import statement from expected from import statement, thanks eslint --- docs/source/api/client.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/api/client.md b/docs/source/api/client.md index fd0ec42fc..e5b46a0d4 100644 --- a/docs/source/api/client.md +++ b/docs/source/api/client.md @@ -264,7 +264,7 @@ Coral UI is a set of components to help you build your UI. This powers our core. ### Import ```js -import {Button} 'plugin-api/beta/components/ui'; +import {Button} from 'plugin-api/beta/components/ui'; ``` ### Components