From 166546564daf675d67c3ca9c8d251b804a1167b4 Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Tue, 22 Jan 2019 11:30:25 +0100 Subject: [PATCH] updated payment-update path Method --- modules/client/front/billing-data/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/client/front/billing-data/index.js b/modules/client/front/billing-data/index.js index 4583e51b8..40116b416 100644 --- a/modules/client/front/billing-data/index.js +++ b/modules/client/front/billing-data/index.js @@ -35,7 +35,7 @@ export default class Controller { } notifyChanges() { - this.$http.get(`/email/payment-update`, {clientFk: this.client.id}).then( + this.$http.post(`/email/payment-update`, {clientFk: this.client.id}).then( () => this.vnApp.showMessage(this.$translate.instant('Notification sent!')) ); }