diff options
author | Andrew Godwin | 2022-12-04 08:20:50 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-04 08:20:50 -0700 |
commit | ec1848e0956c467f264614037ad53b26e99086f6 (patch) | |
tree | 60b8ad77751b35a2631121147a2d8a284e0d96f2 /takahe | |
parent | 6ce05296b01b1bd177e93b5ea3745fba5a5ff8f2 (diff) | |
download | takahe-ec1848e0956c467f264614037ad53b26e99086f6.tar.gz takahe-ec1848e0956c467f264614037ad53b26e99086f6.tar.bz2 takahe-ec1848e0956c467f264614037ad53b26e99086f6.zip |
Adding RSS feeds for local identities
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index 0e995c4..59f14ba 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -120,6 +120,7 @@ urlpatterns = [ path("@<handle>/", identity.ViewIdentity.as_view()), path("@<handle>/inbox/", activitypub.Inbox.as_view()), path("@<handle>/action/", identity.ActionIdentity.as_view()), + path("@<handle>/rss/", identity.IdentityFeed()), # Posts path("compose/", compose.Compose.as_view(), name="compose"), path( |