This commit is contained in:
Andras Bacsai
2023-06-13 11:04:11 +02:00
parent 87547d5622
commit eaf31eb946
3 changed files with 4 additions and 4 deletions

View File

@@ -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',