safetwitch/frontend/src/views/PrivacyPageView.vue

25 lines
963 B
Vue
Raw Normal View History

2023-03-07 17:55:05 -05:00
<script lang="ts">
2023-03-18 13:49:02 -04:00
export default {}
2023-03-07 17:55:05 -05:00
</script>
<template>
2023-03-18 13:49:02 -04:00
<article
class="prose prose-invert border-2 border-ctp-peach max-w-prose bg-ctp-crust rounded-lg mx-auto p-8 pt-10 text-white"
>
<h1>Privacy Policy</h1>
<p>
For the oficial instance, no logs are kept except for when an error is met that affects the
user is encounered. An example of this is when data retrieval fails when a user requests. No
identifying information is kept except for the time of request. below is an example of this
data
</p>
<code class="">
{ "endpoint":"/api/users/chibidoki", "level":"warn","message": "No element found for selector:
li.InjectLayout-sc-1i43xsx-0:nth-child(2) > a:nth-child(1) > div:nth-child(1) >
div:nth-child(1) > p:nth-child(1)", "origin":"http://localhost:5173",
"reqId":"fed6f1f6-403f-4d6a-9943-3d07ea7bf9bb", "timestamp":"2023-03-07T22:42:37.982Z" }
</code>
</article>
</template>