split privacy policy from about page
This commit is contained in:
parent
c135dc793e
commit
5ba5f2b460
|
@ -46,6 +46,11 @@ def about():
|
|||
twitter_login_error='twitter_login_error' in request.args)
|
||||
|
||||
|
||||
@app.route('/about/privacy')
|
||||
def privacy():
|
||||
return render_template('privacy.html')
|
||||
|
||||
|
||||
@app.route('/login/twitter')
|
||||
@limiter.limit('10/minute')
|
||||
def twitter_login_step1():
|
||||
|
|
|
@ -60,18 +60,4 @@
|
|||
</p>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
<section class='policy'>
|
||||
<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>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -36,7 +36,11 @@
|
|||
</header>
|
||||
{% block body %}{% endblock %}
|
||||
<footer>
|
||||
<p>Forget <a href='{{repo_url}}'>{{version or "dev"}}</a> is free and open-source software.</p>
|
||||
<p>
|
||||
Forget <a href='{{repo_url}}'>{{version or "dev"}}</a>
|
||||
· <a href="{{url_for('about')}}">About</a>
|
||||
· <a href="{{url_for('privacy')}}">Privacy</a>
|
||||
</p>
|
||||
<p>Report issues <a href='https://github.com/codl/forget/issues'>on Github</a>
|
||||
or directly to codl on
|
||||
<a href="https://twitter.com/codl">Twitter</a>,
|
||||
|
|
Loading…
Reference in New Issue