From 5cb7e3dc035fb503ca5f47b8db008bf545318fe5 Mon Sep 17 00:00:00 2001 From: Shane Kilkelly Date: Fri, 12 Aug 2016 09:56:16 +0100 Subject: [PATCH] Remove redundant `/notification` path component --- services/notifications/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/notifications/app.coffee b/services/notifications/app.coffee index 7008c814b0..4a8136cb92 100644 --- a/services/notifications/app.coffee +++ b/services/notifications/app.coffee @@ -24,7 +24,7 @@ app.post '/user/:user_id', controller.addNotification app.get '/user/:user_id', controller.getUserNotifications app.del '/user/:user_id/notification/:notification_id', controller.removeNotificationId app.del '/user/:user_id', controller.removeNotificationKey -app.del '/notification/key/:key', controller.removeNotificationByKeyOnly +app.del '/key/:key', controller.removeNotificationByKeyOnly app.get '/status', (req, res)-> res.send('notifications sharelatex up')