Skip to content

Commit

Permalink
Fix verification_email endpoint when in MULTI_ORG mode (#3502)
Browse files Browse the repository at this point in the history
* 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 817fb03.

* fix for /email_verification in MULTI_ORG setups
  • Loading branch information
Omer Lachish authored Mar 2, 2019
1 parent 6e3b9c2 commit 02e82a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
};
Expand Down

0 comments on commit 02e82a7

Please sign in to comment.