From ef0a62d3784d2d92c8143d177ad087b2c3272bfc Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Thu, 18 Dec 2014 14:36:05 -0300 Subject: [PATCH] added resend_email route --- config/routes.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/routes.js b/config/routes.js index f031e380..bf24e006 100644 --- a/config/routes.js +++ b/config/routes.js @@ -68,6 +68,8 @@ module.exports = function(app) { app.post(apiPrefix + '/email/delete/profile', emailPlugin.eraseProfile); app.get(apiPrefix + '/email/delete/item', emailPlugin.erase); + + app.get(apiPrefix + '/email/resend_email', emailPlugin.resendEmail); } // Currency rates plugin