From 495e955378d62dc439c4c210785e5d401bc77f64 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 16 Nov 2022 06:53:39 -0700 Subject: Tag and visibility handling --- takahe/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'takahe/urls.py') diff --git a/takahe/urls.py b/takahe/urls.py index a87ec87..723516a 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -8,6 +8,7 @@ from users.views import activitypub, auth, identity urlpatterns = [ path("", core.homepage), + path("manifest.json", core.AppManifest.as_view()), # Activity views path("notifications/", timelines.Notifications.as_view()), path("local/", timelines.Local.as_view()), @@ -18,7 +19,8 @@ urlpatterns = [ path("@/actor/inbox/", activitypub.Inbox.as_view()), path("@/action/", identity.ActionIdentity.as_view()), # Posts - path("@/posts//", posts.Post.as_view()), + path("compose/", posts.Compose.as_view()), + path("@/posts//", posts.Individual.as_view()), path("@/posts//like/", posts.Like.as_view()), path("@/posts//unlike/", posts.Like.as_view(undo=True)), path("@/posts//boost/", posts.Boost.as_view()), -- cgit v1.2.3