diff options
author | Andrew Godwin | 2022-11-24 22:31:45 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-24 22:31:57 -0700 |
commit | 79002e1eaf96e9cfcd2993715b67cf3a61e02fb3 (patch) | |
tree | 10d3f3c7cd7709cdab5259c5e74066df6e175e74 /activities/models | |
parent | df5493dd2a9a884660ee2a491377237071493c76 (diff) | |
download | takahe-79002e1eaf96e9cfcd2993715b67cf3a61e02fb3.tar.gz takahe-79002e1eaf96e9cfcd2993715b67cf3a61e02fb3.tar.bz2 takahe-79002e1eaf96e9cfcd2993715b67cf3a61e02fb3.zip |
Add initial delete UI
Diffstat (limited to 'activities/models')
-rw-r--r-- | activities/models/post.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activities/models/post.py b/activities/models/post.py index c8165d6..642842c 100644 --- a/activities/models/post.py +++ b/activities/models/post.py @@ -138,6 +138,7 @@ class Post(StatorModel): action_unlike = "{view}unlike/" action_boost = "{view}boost/" action_unboost = "{view}unboost/" + action_delete = "{view}delete/" action_reply = "/compose/?reply_to={self.id}" def get_scheme(self, url): |