Browse Source

refactor(asaas): stop creating unit subaccounts on unit creation

ebagabee 1 tháng trước cách đây
mục cha
commit
c5580a7f36
1 tập tin đã thay đổi với 0 bổ sung3 xóa
  1. 0 3
      app/Services/UnitService.php

+ 0 - 3
app/Services/UnitService.php

@@ -73,9 +73,6 @@ public function create(array $data): Unit
 
         $this->replicatePackagesToUnit($unit->id);
 
-        // Dispatch Asaas Subaccount creation asynchronously
-        \App\Jobs\CreateAsaasSubaccountJob::dispatch($unit->id);
-
         return $unit;
     }