fix: change app_id and installation_id to integer values in createGithubAppManually method

This commit is contained in:
Andras Bacsai 2025-10-26 09:27:21 +01:00
parent 46158a5fe8
commit b75c0fd8ae

View file

@ -341,8 +341,8 @@ public function createGithubAppManually()
$this->authorize('update', $this->github_app);
$this->github_app->makeVisible('client_secret')->makeVisible('webhook_secret');
$this->github_app->app_id = '1234567890';
$this->github_app->installation_id = '1234567890';
$this->github_app->app_id = 1234567890;
$this->github_app->installation_id = 1234567890;
$this->github_app->save();
// Redirect to avoid Livewire morphing issues when view structure changes