Add rss feed for subscriptions.

Closes #284.
This commit is contained in:
FireMasterK 2021-07-20 01:14:55 +05:30
parent 79109bda2d
commit 3a71f8c1d3
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD

View File

@ -3,6 +3,10 @@
<small>You can import subscriptions from <router-link to="/import">here</router-link>.</small> <small>You can import subscriptions from <router-link to="/import">here</router-link>.</small>
<div class="uk-align-right">
<a :href="getRssUrl"><font-awesome-icon icon="rss"></font-awesome-icon></a>
</div>
<hr /> <hr />
<div class="uk-grid-xl" uk-grid="parallax: 0"> <div class="uk-grid-xl" uk-grid="parallax: 0">
@ -70,5 +74,10 @@ export default {
}); });
}, },
}, },
computed: {
getRssUrl(_this) {
return _this.apiUrl() + "/feed/rss?authToken=" + _this.getAuthToken();
},
},
}; };
</script> </script>