1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

domain_delete: delete moderator data

This commit is contained in:
Adhityaa
2018-06-03 20:57:08 +05:30
parent 79f39f8094
commit 13eca3c78a
2 changed files with 52 additions and 1 deletions

View File

@ -13,6 +13,7 @@ func initAPIRouter(router *mux.Router) error {
router.HandleFunc("/api/owner/self", ownerSelfHandler).Methods("POST")
router.HandleFunc("/api/domain/new", domainNewHandler).Methods("POST")
router.HandleFunc("/api/domain/delete", domainDeleteHandler).Methods("POST")
router.HandleFunc("/api/domain/list", domainListHandler).Methods("POST")
router.HandleFunc("/api/domain/update", domainUpdateHandler).Methods("POST")
router.HandleFunc("/api/domain/moderator/new", domainModeratorNewHandler).Methods("POST")