Skip to content

Commit

Permalink
WIP: feat(provisioning): Implemment settings provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
pizkaz committed Dec 16, 2024
1 parent d651dbf commit da2f5df
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Console/Commands/ProvisionCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,9 @@ public function handle()
foreach ($data->users->add as $item) {
$this->provision->user->create($item);
}

$n = count(get_object_vars($data->settings->application))
+ count(get_object_vars($data->settings->recording));
Log::notice('Provisioning {n} settings', ['n' => $n]);
}
}

0 comments on commit da2f5df

Please sign in to comment.