ysdsad
All checks were successful
Deploy / deploy-staging (push) Successful in 27s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-08-14 01:51:48 +02:00
parent 6de12f164d
commit 3d2b566bf2
8 changed files with 391 additions and 69 deletions

View File

@@ -594,6 +594,8 @@ final class Router
'auto_renew' => !empty($plan['auto_renew']) ? 1 : 0,
'total_cost_amount' => $plan['total_cost_amount'],
'currency' => $plan['currency'],
'daily_cost_amount' => $plan['daily_cost_amount'] ?? null,
'daily_cost_currency' => $plan['daily_cost_currency'] ?? null,
'note' => $plan['note'] ?? null,
'is_active' => !empty($plan['is_active']) ? 1 : 0,
]);
@@ -731,6 +733,8 @@ final class Router
'usd_reference_amount' => $miner['usd_reference_amount'] ?? null,
'reference_price_amount' => $miner['reference_price_amount'] ?? null,
'reference_price_currency' => $miner['reference_price_currency'] ?? null,
'daily_cost_amount' => $miner['daily_cost_amount'] ?? null,
'daily_cost_currency' => $miner['daily_cost_currency'] ?? null,
'auto_renew' => !empty($miner['auto_renew']) ? 1 : 0,
'note' => $miner['note'] ?? null,
'is_active' => !empty($miner['is_active']) ? 1 : 0,