fix(api): accept cuid for private_key_uuid on GitHub App update (#11468)
This commit is contained in:
parent
d9f0820a6f
commit
2b5fd8e2ec
1 changed files with 1 additions and 1 deletions
|
|
@ -642,7 +642,7 @@ public function update_github_app(Request $request, $github_app_id)
|
|||
$rules['webhook_secret'] = 'string';
|
||||
}
|
||||
if (isset($payload['private_key_uuid'])) {
|
||||
$rules['private_key_uuid'] = 'string|uuid';
|
||||
$rules['private_key_uuid'] = 'string';
|
||||
}
|
||||
if (! isCloud() && isset($payload['is_system_wide'])) {
|
||||
$rules['is_system_wide'] = 'boolean';
|
||||
|
|
|
|||
Loading…
Reference in a new issue