aboutsummaryrefslogtreecommitdiff
path: root/plugins/carddav/routes.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/carddav/routes.go')
-rw-r--r--plugins/carddav/routes.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/carddav/routes.go b/plugins/carddav/routes.go
index 78fe1eb..7660dbc 100644
--- a/plugins/carddav/routes.go
+++ b/plugins/carddav/routes.go
@@ -211,4 +211,22 @@ func registerRoutes(p *plugin) {
p.GET("/contacts/:path/edit", updateContact)
p.POST("/contacts/:path/edit", updateContact)
+
+ p.POST("/contacts/:path/delete", func(ctx *alps.Context) error {
+ path, err := parseObjectPath(ctx.Param("path"))
+ if err != nil {
+ return err
+ }
+
+ c, err := p.client(ctx.Session)
+ if err != nil {
+ return err
+ }
+
+ if err := c.RemoveAll(path); err != nil {
+ return fmt.Errorf("failed to delete address object: %v", err)
+ }
+
+ return ctx.Redirect(http.StatusFound, "/contacts")
+ })
}