fix: change app_id and installation_id to integer values in createGithubAppManually method
This commit is contained in:
parent
46158a5fe8
commit
b75c0fd8ae
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue