|
@ -215,7 +215,7 @@ |
|
|
Use these instructions. |
|
|
Use these instructions. |
|
|
</a> |
|
|
</a> |
|
|
To start scanning, go to the |
|
|
To start scanning, go to the |
|
|
<router-link class="text-blue-500" to="/contact-qr">contact-scanning page.</router-link> |
|
|
<span class="text-blue-500 cursor-pointer" @click="handleQRCodeClick">contact-scanning page.</span> |
|
|
</p> |
|
|
</p> |
|
|
<p> |
|
|
<p> |
|
|
If they are not nearby to scan QR codes, you each can tap on the QR code |
|
|
If they are not nearby to scan QR codes, you each can tap on the QR code |
|
@ -502,27 +502,27 @@ |
|
|
then don't use it. |
|
|
then don't use it. |
|
|
<br /> |
|
|
<br /> |
|
|
As for data & privacy: |
|
|
As for data & privacy: |
|
|
<ul class="list-disc list-outside ml-4"> |
|
|
|
|
|
<li> |
|
|
|
|
|
If using notifications, a server stores push token data. That can be revoked at any time |
|
|
|
|
|
by disabling notifications on the Profile <font-awesome icon="circle-user" class="fa-fw" /> page. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
If sending images, a server stores them, too. They can be removed by editing the claim |
|
|
|
|
|
and deleting them. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
If sending other partner system data (eg. to Trustroots) a public key and message |
|
|
|
|
|
data are stored on a server. Those can be removed via direct personal request. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
For all other claim data, |
|
|
|
|
|
<a href="https://endorser.ch/privacy-policy" target="_blank" class="text-blue-500"> |
|
|
|
|
|
the Endorser Service has this Privacy Policy. |
|
|
|
|
|
</a> |
|
|
|
|
|
</li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
</p> |
|
|
</p> |
|
|
|
|
|
<ul class="list-disc list-outside ml-4"> |
|
|
|
|
|
<li> |
|
|
|
|
|
If using notifications, a server stores push token data. That can be revoked at any time |
|
|
|
|
|
by disabling notifications on the Profile <font-awesome icon="circle-user" class="fa-fw" /> page. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
If sending images, a server stores them, too. They can be removed by editing the claim |
|
|
|
|
|
and deleting them. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
If sending other partner system data (eg. to Trustroots) a public key and message |
|
|
|
|
|
data are stored on a server. Those can be removed via direct personal request. |
|
|
|
|
|
</li> |
|
|
|
|
|
<li> |
|
|
|
|
|
For all other claim data, |
|
|
|
|
|
<a href="https://endorser.ch/privacy-policy" target="_blank" class="text-blue-500"> |
|
|
|
|
|
the Endorser Service has this Privacy Policy. |
|
|
|
|
|
</a> |
|
|
|
|
|
</li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
|
|
|
<h2 class="text-xl font-semibold">How can I contribute?</h2> |
|
|
<h2 class="text-xl font-semibold">How can I contribute?</h2> |
|
|
<p> |
|
|
<p> |
|
@ -576,6 +576,7 @@ |
|
|
import { Component, Vue } from "vue-facing-decorator"; |
|
|
import { Component, Vue } from "vue-facing-decorator"; |
|
|
import { Router } from "vue-router"; |
|
|
import { Router } from "vue-router"; |
|
|
import { useClipboard } from "@vueuse/core"; |
|
|
import { useClipboard } from "@vueuse/core"; |
|
|
|
|
|
import { Capacitor } from "@capacitor/core"; |
|
|
|
|
|
|
|
|
import * as Package from "../../package.json"; |
|
|
import * as Package from "../../package.json"; |
|
|
import QuickNav from "../components/QuickNav.vue"; |
|
|
import QuickNav from "../components/QuickNav.vue"; |
|
@ -632,5 +633,13 @@ export default class HelpView extends Vue { |
|
|
} |
|
|
} |
|
|
this.$router.push({ name: "home" }); |
|
|
this.$router.push({ name: "home" }); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private handleQRCodeClick() { |
|
|
|
|
|
if (Capacitor.isNativePlatform()) { |
|
|
|
|
|
this.$router.push({ name: "contact-qr-scan-full" }); |
|
|
|
|
|
} else { |
|
|
|
|
|
this.$router.push({ name: "contact-qr" }); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|