Use /feeds/users/{username} path for user's Atom feed

This commit is contained in:
silverpill 2023-02-25 21:19:01 +00:00
parent 03abee0d8f
commit 4d27411752
2 changed files with 5 additions and 1 deletions

View file

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] ## [Unreleased]
### Changed
- Use `/feeds/users/{username}` path for user's Atom feed.
## [1.14.0] - 2023-02-22 ## [1.14.0] - 2023-02-22
### Added ### Added

View file

@ -508,7 +508,7 @@ const feedUrl = $computed<string>(() => {
if (!profile || !isLocalUser()) { if (!profile || !isLocalUser()) {
return "" return ""
} }
return `${BACKEND_URL}/feeds/${profile.username}` return `${BACKEND_URL}/feeds/users/${profile.username}`
}) })
function canVerifyEthereumAddress(): boolean { function canVerifyEthereumAddress(): boolean {