Skip to content

Commit db04981

Browse files
committed
feat(site): add /privacy page to satisfy Slack privacy requirements
1 parent c74227d commit db04981

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

bot.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ webserver.get('/help', function(req, res){
100100
});
101101
});
102102

103+
webserver.get('/privacy', function(req, res){
104+
res.render('privacy', {
105+
domain: req.get('host'),
106+
protocol: req.protocol,
107+
layout: 'layouts/default'
108+
});
109+
});
110+
103111
// Set up a simple storage backend for keeping a record of customers
104112
// who sign up for the app via the oauth
105113
require(__dirname + '/components/user_registration.js')(controller);

views/partials/footer.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<a href="https://botkit.ai">Powered by Botkit</a> |
55
<a href="https://ericrallen.dev/">Built By Eric Allen</a> |
66
<a href="https:www/rssbot.app/help">Support</a> |
7+
<a href="https:www/rssbot.app/privacy">Privacy</a> |
78
<a href="https://twitter.com/RSSSlackBot">Twitter</a>
89
</p>
910
<p><strong>Note</strong>: The RSS feeds generated by @RSS bot are publicly-accessible to anyone with the link.</p>

views/privacy.hbs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<main class="hero wrapper">
2+
<h1>Privacy</h1>
3+
</main>
4+
<article>
5+
<p>@RSS bot only gathers information that you explicitly share with it via Slack.</p>
6+
<p>Your team ID and channel ID are used to construct the URL for each channel's feed.</p>
7+
<p>RSS feeds are publicly-accessible to anyone with the feed URL.</p>
8+
<p>The display name of the user who originally shared the link will appear in the RSS feed entry for that link along with any text they posted with the link.</p>
9+
<p>Our RSS feeds use analytics tracking via <a href="https://feed.press/" target="_blank" rel="noopener noreferrer">FeedPress</a> to keep track of subscriber counts. We do not store any analytics data from FeedPress.</p>
10+
<p>We only store the last 10 links shared in each channel.</p>
11+
<p></p>
12+
<h2>Questions?</h2>
13+
<ol>
14+
<li><a href="mailto:info@rssbot.app" target="_blank" rel="noopener noreferrer">Email Support</a></li>
15+
<li><a href="https://twitter.com/intent/tweet/?text=@RSSSlackBot" target="_blank" rel="noopener noreferrer">Tweet @RSSSlackBot</a></li>
16+
<li><a href="https://github.com/InterwebAlchemy/scrape-rss-bot/issues" target="_blank" rel="noopener noreferrer">File a GitHub Issue</a></li>
17+
</ol>
18+
</article>

0 commit comments

Comments
 (0)