Allow servers to be unprovisioned without issuing a refund (#3534)

* Allow servers to be unprovisioned without issuing a refund

for very specific weird circumstances where a server gets stuck/etc; useful for support

* still create a charge

* Fix compile
This commit is contained in:
Emma Alexia
2025-04-19 00:39:18 -04:00
committed by GitHub
parent d0aef27f7b
commit 84a28e045b
2 changed files with 48 additions and 40 deletions

View File

@@ -277,7 +277,7 @@ const refunding = ref(false);
const refundModal = ref();
const selectedCharge = ref(null);
const refundType = ref("full");
const refundTypes = ref(["full", "partial"]);
const refundTypes = ref(["full", "partial", "none"]);
const refundAmount = ref(0);
const unprovision = ref(false);