mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-01-09 21:02:36 +01:00
add privacy policy
This commit is contained in:
parent
30a0b24258
commit
c92bf7f7bc
@ -95,6 +95,10 @@ module.exports = (app, redis, fetch, RedditAPI) => {
|
|||||||
return res.redirect('/preferences')
|
return res.redirect('/preferences')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
app.get('/privacy', (req, res, next) => {
|
||||||
|
return res.render('privacypolicy', { user_preferences: req.cookies })
|
||||||
|
})
|
||||||
|
|
||||||
app.get('/search', (req, res, next) => {
|
app.get('/search', (req, res, next) => {
|
||||||
let q = req.query.q
|
let q = req.query.q
|
||||||
let restrict_sr = req.query.restrict_sr
|
let restrict_sr = req.query.restrict_sr
|
||||||
|
@ -14,6 +14,8 @@ html
|
|||||||
li All requests go through the backend, client never talks to Reddit
|
li All requests go through the backend, client never talks to Reddit
|
||||||
li Prevents Reddit from tracking your IP or JavaScript fingerprint
|
li Prevents Reddit from tracking your IP or JavaScript fingerprint
|
||||||
li Lightweight (teddit frontpage: ~30 HTTP requests with ~270 KB of data downloaded vs. Reddit frontpage: ~190 HTTP requests with ~24 MB)
|
li Lightweight (teddit frontpage: ~30 HTTP requests with ~270 KB of data downloaded vs. Reddit frontpage: ~190 HTTP requests with ~24 MB)
|
||||||
|
br
|
||||||
|
a(href="/privacy") Privacy policy
|
||||||
h2 Donating
|
h2 Donating
|
||||||
p(class="word-break") XMR: 832ogRwuoSs2JGYg7wJTqshidK7dErgNdfpenQ9dzMghNXQTJRby1xGbqC3gW3GAifRM9E84J91VdMZRjoSJ32nkAZnaCEj
|
p(class="word-break") XMR: 832ogRwuoSs2JGYg7wJTqshidK7dErgNdfpenQ9dzMghNXQTJRby1xGbqC3gW3GAifRM9E84J91VdMZRjoSJ32nkAZnaCEj
|
||||||
p BTC: bc1qlcrmt2pvlh4eq69l3l4h6z5jg74z2m2q3pasan
|
p BTC: bc1qlcrmt2pvlh4eq69l3l4h6z5jg74z2m2q3pasan
|
||||||
|
31
views/privacypolicy.pug
Normal file
31
views/privacypolicy.pug
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
doctype html
|
||||||
|
html
|
||||||
|
head
|
||||||
|
title privacy policy - teddit
|
||||||
|
include includes/head.pug
|
||||||
|
body
|
||||||
|
include includes/topbar.pug
|
||||||
|
.container
|
||||||
|
.content
|
||||||
|
h1 Privacy policy
|
||||||
|
p This document concerns what data you provide to this website, the purpose of the data, how the data is stored, and how the data can be removed.
|
||||||
|
h2 Data you directly provide
|
||||||
|
p None.
|
||||||
|
h2 Data you passively provide
|
||||||
|
p By default teddit logs fetched subreddit or post URL for debugging reasons.
|
||||||
|
p No identifying information is logged, such as the visitor's cookie, timestamp, user-agent, or IP address. Here are a couple lines to serve as an example how the debug log looks like:
|
||||||
|
code
|
||||||
|
| Got frontpage key from redis.
|
||||||
|
br
|
||||||
|
| Fetched the JSON from reddit.com/r/privacytoolsIO.
|
||||||
|
br
|
||||||
|
| Got frontpage key from redis.
|
||||||
|
br
|
||||||
|
| Fetched the JSON from reddit.com/r/OTMemes/comments/k311hu/we_all_know_sequels_refers_to_the_sequel_trilogy/.
|
||||||
|
br
|
||||||
|
| Got frontpage key from redis.
|
||||||
|
br
|
||||||
|
| Fetched the JSON from reddit.com/r/aww/comments/k31ddb/a_lot_of_request_to_see_the_dry_cat_here_she_is/.
|
||||||
|
h2 Data stored in your browser
|
||||||
|
p This website provides an option to store site preferences, such as the theme without an account. Using this feature will store a cookie in the visitor's browser containing their preferences. This cookie is sent on every request and does not contain any identifying information.
|
||||||
|
p You can remove this data from your browser by using your browser's cookie-related controls to delete the data.
|
Loading…
Reference in New Issue
Block a user