diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-20 09:33:03 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-20 09:33:03 -0600 |
commit | 0bc0204f0b718464d7ea9d97d6d03ee81f1953c6 (patch) | |
tree | 73cdde7976391f153d457ac3682ba29a3873fc1d /srv/src/api/api.go | |
parent | 1242be7cfec1faa6a880d625307e32a1a91937ac (diff) |
Implement post deleting
Diffstat (limited to 'srv/src/api/api.go')
-rw-r--r-- | srv/src/api/api.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/srv/src/api/api.go b/srv/src/api/api.go index a6fc779..fc6f6a2 100644 --- a/srv/src/api/api.go +++ b/srv/src/api/api.go @@ -213,7 +213,12 @@ func (a *api) handler() http.Handler { v2Mux := http.NewServeMux() v2Mux.Handle("/follow.html", a.renderDumbTplHandler("follow.html")) v2Mux.Handle("/posts/", http.StripPrefix("/posts", - a.renderPostHandler(), + apiutil.MethodMux(map[string]http.Handler{ + "GET": a.renderPostHandler(), + "DELETE": authMiddleware(auther, + formMiddleware(a.deletePostHandler()), + ), + }), )) v2Mux.Handle("/assets/", http.StripPrefix("/assets", apiutil.MethodMux(map[string]http.Handler{ |