瀏覽代碼

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

ebagabee 1 月之前
父節點
當前提交
c5580a7f36
共有 1 個文件被更改,包括 0 次插入3 次删除
  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;
     }