[PR #2026] [MERGED] Add config page for all RSS feeds #3642

Closed
opened 2026-04-25 00:16:28 +02:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/advplyr/audiobookshelf/pull/2026
Author: @shawnphoffman
Created: 8/22/2023
Status: Merged
Merged: 8/22/2023
Merged by: @advplyr

Base: masterHead: shawn/rss-feeds


📝 Commits (3)

  • 13427b9 Add RSS feeds config page
  • 24989e7 Merge branch 'master' into shawn/rss-feeds
  • 469167d Update get all feeds route to be admin-only, map translation strings

📊 Changes

20 files changed (+379 additions, -6 deletions)

View changed files

📝 client/components/app/ConfigSideNav.vue (+5 -0)
client/components/modals/rssfeed/ViewFeedModal.vue (+124 -0)
📝 client/pages/config.vue (+1 -0)
client/pages/config/rss-feeds.vue (+176 -0)
📝 client/strings/de.json (+4 -0)
📝 client/strings/en-us.json (+4 -0)
📝 client/strings/es.json (+4 -0)
📝 client/strings/fr.json (+4 -0)
📝 client/strings/gu.json (+4 -0)
📝 client/strings/hi.json (+4 -0)
📝 client/strings/hr.json (+4 -0)
📝 client/strings/it.json (+4 -0)
📝 client/strings/lt.json (+4 -0)
📝 client/strings/nl.json (+4 -0)
📝 client/strings/pl.json (+4 -0)
📝 client/strings/ru.json (+4 -0)
📝 client/strings/zh-cn.json (+4 -0)
📝 server/controllers/RSSFeedController.js (+8 -0)
📝 server/managers/RssFeedManager.js (+9 -3)
📝 server/routers/ApiRouter.js (+4 -3)

📄 Description

Overview

I tend to lose track of what RSS feeds I have open so I decided to add a config screen for them. Basically, it just lists all of the open RSS feeds with some basic metadata and a button to close them. A modal lists the episodes associated with the feed and copy-to-clipboard option.

Discussion: #2014

Open Questions

  • Localization. Is there a process for this? Do we leave the keys out of the JSON files or include them with English strings?

Screenshots

Full-width Narrow view View feeds modal Close feed confirmation

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/advplyr/audiobookshelf/pull/2026 **Author:** [@shawnphoffman](https://github.com/shawnphoffman) **Created:** 8/22/2023 **Status:** ✅ Merged **Merged:** 8/22/2023 **Merged by:** [@advplyr](https://github.com/advplyr) **Base:** `master` ← **Head:** `shawn/rss-feeds` --- ### 📝 Commits (3) - [`13427b9`](https://github.com/advplyr/audiobookshelf/commit/13427b9f70667bd427bab9e0427086046d119fd6) Add RSS feeds config page - [`24989e7`](https://github.com/advplyr/audiobookshelf/commit/24989e73ae70f25cedfad9c0256c1f147cc14984) Merge branch 'master' into shawn/rss-feeds - [`469167d`](https://github.com/advplyr/audiobookshelf/commit/469167df661a6537f5aba34cdba03111dfdda95e) Update get all feeds route to be admin-only, map translation strings ### 📊 Changes **20 files changed** (+379 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `client/components/app/ConfigSideNav.vue` (+5 -0) ➕ `client/components/modals/rssfeed/ViewFeedModal.vue` (+124 -0) 📝 `client/pages/config.vue` (+1 -0) ➕ `client/pages/config/rss-feeds.vue` (+176 -0) 📝 `client/strings/de.json` (+4 -0) 📝 `client/strings/en-us.json` (+4 -0) 📝 `client/strings/es.json` (+4 -0) 📝 `client/strings/fr.json` (+4 -0) 📝 `client/strings/gu.json` (+4 -0) 📝 `client/strings/hi.json` (+4 -0) 📝 `client/strings/hr.json` (+4 -0) 📝 `client/strings/it.json` (+4 -0) 📝 `client/strings/lt.json` (+4 -0) 📝 `client/strings/nl.json` (+4 -0) 📝 `client/strings/pl.json` (+4 -0) 📝 `client/strings/ru.json` (+4 -0) 📝 `client/strings/zh-cn.json` (+4 -0) 📝 `server/controllers/RSSFeedController.js` (+8 -0) 📝 `server/managers/RssFeedManager.js` (+9 -3) 📝 `server/routers/ApiRouter.js` (+4 -3) </details> ### 📄 Description # Overview I tend to lose track of what RSS feeds I have open so I decided to add a config screen for them. Basically, it just lists all of the open RSS feeds with some basic metadata and a button to close them. A modal lists the episodes associated with the feed and copy-to-clipboard option. Discussion: #2014 ## Open Questions - [ ] Localization. Is there a process for this? Do we leave the keys out of the JSON files or include them with English strings? ## Screenshots <img width="1322" alt="Full-width" src="https://github.com/advplyr/audiobookshelf/assets/1154273/4823ba22-9720-4758-b9b2-ff71acbb6567"> <img alt="Narrow view" src="https://github.com/advplyr/audiobookshelf/assets/1154273/c7c55f24-a096-48e5-9cd4-7a65044581c4"> <img width="782" alt="View feeds modal" src="https://github.com/advplyr/audiobookshelf/assets/1154273/10773909-0e61-4b1d-9aa3-61cd481e7b27"> <img width="548" alt="Close feed confirmation" src="https://github.com/advplyr/audiobookshelf/assets/1154273/57ee36f7-63b3-4622-bcb8-f1c91c6d6dd1"> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-04-25 00:16:28 +02:00
adam closed this issue 2026-04-25 00:16:28 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/audiobookshelf#3642