24 lines
852 B
HTML
24 lines
852 B
HTML
{% extends 'lib/layout.html' %}
|
|
{% block body %}
|
|
|
|
<section>
|
|
{% include "lib/greet.html" %}
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Pledge & Privacy Policy</h2>
|
|
<p>Forget does not post, follow, or do anything with your account other than its job: deleting posts. For it to function, Forget needs to retrieve and store some metadata about each of your posts:</p>
|
|
<ul>
|
|
<li>A unique post identifier</li>
|
|
<li>The post's time and date of publishing</li>
|
|
<li>Whether the post has any media attached</li>
|
|
<li>Whether the post has been favourited by you</li>
|
|
<li>(Mastodon only) Whether the post is a direct message</li>
|
|
</ul>
|
|
<p>No other post metadata and no post contents are stored by Forget.</p>
|
|
|
|
<p>Last updated on 2021-05-14. <a href="https://github.com/codl/forget/commits/master/templates/privacy.html">History</a>.</p>
|
|
</section>
|
|
|
|
{% endblock %}
|