Some fixes for registering hosts, enable jobs to go to postgres, initial setup fixes

This commit is contained in:
Deon George
2022-03-11 23:49:15 +11:00
parent cf3b1947a4
commit 4ff29e7e43
7 changed files with 38 additions and 5 deletions

View File

@@ -45,7 +45,6 @@ class InitialSetupSeeder extends Seeder
$do = new Domain;
$do->forceFill([
'name'=>'private',
'default'=>TRUE,
'active'=>TRUE,
'public'=>TRUE,
'notes'=>'PrivateNet: Internal Testing Network'
@@ -55,6 +54,7 @@ class InitialSetupSeeder extends Seeder
$zo = new Zone;
$zo->forceFill([
'zone_id'=>'10',
'default'=>TRUE,
'active'=>TRUE,
'system_id'=>$so->id,
]);
@@ -83,6 +83,7 @@ class InitialSetupSeeder extends Seeder
'name'=>'-BAD_AREA',
'description'=>'Inbound invalid echomail',
'active'=>TRUE,
'public'=>TRUE,
'domain_id'=>$do->id,
]);
@@ -90,6 +91,7 @@ class InitialSetupSeeder extends Seeder
'name'=>'-BAD_AREA',
'description'=>'Inbound invalid files',
'active'=>TRUE,
'public'=>TRUE,
'domain_id'=>$do->id,
]);
}