Adds compose view

This commit is contained in:
Mouse Reeve
2021-04-03 14:32:34 -07:00
parent dae31459e4
commit 4cf9bca5aa
3 changed files with 45 additions and 6 deletions

View File

@@ -202,6 +202,11 @@ urlpatterns = [
re_path(
r"%s/replies(.json)?/?$" % status_path, views.Replies.as_view(), name="replies"
),
re_path(
r"^post/?$",
views.CreateStatus.as_view(),
name="create-status",
),
re_path(
r"^post/(?P<status_type>\w+)/?$",
views.CreateStatus.as_view(),