From 3a71f8c1d33bbd3a7c82b89cdad426509ddce8e6 Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 20 Jul 2021 01:14:55 +0530 Subject: [PATCH] Add rss feed for subscriptions. Closes #284. --- src/components/FeedPage.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/FeedPage.vue b/src/components/FeedPage.vue index 390efee8..5b95ce8e 100644 --- a/src/components/FeedPage.vue +++ b/src/components/FeedPage.vue @@ -3,6 +3,10 @@ You can import subscriptions from here. +
+ +
+
@@ -70,5 +74,10 @@ export default { }); }, }, + computed: { + getRssUrl(_this) { + return _this.apiUrl() + "/feed/rss?authToken=" + _this.getAuthToken(); + }, + }, };