feat: show download/target paths for admin users

- Admin users see download path (SABnzbd storage / qBittorrent save_path)
- Admin users see target path (Sonarr series folder / Radarr movie folder)
- Paths displayed in monospace font at bottom of card details
- Non-admin users unaffected (paths not sent in API response)
This commit is contained in:
2026-05-15 21:07:19 +01:00
parent 67b816cd61
commit ebb73492c4
4 changed files with 99 additions and 8 deletions

View File

@@ -198,6 +198,7 @@ function mapTorrentToDownload(torrent) {
hash: torrent.hash,
category: torrent.category,
tags: torrent.tags,
savePath: torrent.save_path || torrent.content_path || null,
qbittorrent: true
};
}