diff --git a/src/app/organization/organizationBillingController.js b/src/app/organization/organizationBillingController.js index 69667b587b6..dfdef88f3b2 100644 --- a/src/app/organization/organizationBillingController.js +++ b/src/app/organization/organizationBillingController.js @@ -59,12 +59,12 @@ }); }; - $scope.uncancel = function () { - if (!confirm('Are you sure you want to remove the cancellation request?')) { + $scope.reinstate = function () { + if (!confirm('Are you sure you want to remove the cancellation request and reinstate this organization?')) { return; } - apiService.organizations.putUncancel({ id: $state.params.orgId }, {}) + apiService.organizations.putReinstate({ id: $state.params.orgId }, {}) .$promise.then(function (response) { toastr.success('Organization cancellation request has been removed.'); load(); diff --git a/src/app/organization/views/organizationBilling.html b/src/app/organization/views/organizationBilling.html index f664cff9e6b..eb79a299759 100644 --- a/src/app/organization/views/organizationBilling.html +++ b/src/app/organization/views/organizationBilling.html @@ -10,11 +10,19 @@
+ The subscription to this organization has been marked for cancellation at the end of the + current billing period. +
+