feat(seeder): Call CA SSL seeder in prod and dev

This commit is contained in:
peaklabs-dev 2025-01-31 12:23:59 +01:00
parent 90a93ce7e0
commit 503e1ffb67
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -28,6 +28,7 @@ public function run(): void
OauthSettingSeeder::class,
DisableTwoStepConfirmationSeeder::class,
SentinelSeeder::class,
CaSslCertSeeder::class,
]);
}
}

View file

@ -193,5 +193,6 @@ public function run(): void
$this->call(PopulateSshKeysDirectorySeeder::class);
$this->call(SentinelSeeder::class);
$this->call(RootUserSeeder::class);
$this->call(CaSslCertSeeder::class);
}
}