diff --git a/app/Models/GithubApp.php b/app/Models/GithubApp.php index 6c858a35d..ff7d30fac 100644 --- a/app/Models/GithubApp.php +++ b/app/Models/GithubApp.php @@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Casts\Attribute; class GithubApp extends BaseModel { - protected $fillable = ['name', 'uuid', 'organization', 'api_url', 'html_url', 'custom_user', 'custom_port', 'team_id']; + protected $fillable = ['name', 'uuid', 'organization', 'api_url', 'html_url', 'custom_user', 'custom_port', 'team_id', 'client_secret', 'webhook_secret']; protected $appends = ['type']; protected $casts = [ 'is_public' => 'boolean', diff --git a/resources/views/livewire/project/application/deployments.blade.php b/resources/views/livewire/project/application/deployments.blade.php index 67765c35e..673a5586e 100644 --- a/resources/views/livewire/project/application/deployments.blade.php +++ b/resources/views/livewire/project/application/deployments.blade.php @@ -1,10 +1,10 @@