소스 검색

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;
     }