From 02e82a765873a897c5f940b207025d365c0c215c Mon Sep 17 00:00:00 2001 From: Omer Lachish Date: Sat, 2 Mar 2019 14:12:41 +0200 Subject: [PATCH] Fix verification_email endpoint when in MULTI_ORG mode (#3502) * append slug to /verification_email endpoint when in MULTI_ORG mode * Revert "append slug to /verification_email endpoint when in MULTI_ORG mode" This reverts commit 817fb034c4cbb396cf4dbfbe52d1f4890689ba6a. * fix for /email_verification in MULTI_ORG setups --- client/app/pages/home/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/pages/home/index.js b/client/app/pages/home/index.js index 05b167db99..c8f64caad4 100644 --- a/client/app/pages/home/index.js +++ b/client/app/pages/home/index.js @@ -18,7 +18,7 @@ function HomeCtrl(Events, Dashboard, Query, $http, currentUser, toastr) { }); this.verifyEmail = () => { - $http.post('/verification_email/').success(({ message }) => { + $http.post('verification_email/').success(({ message }) => { toastr.success(message); }); };