Add default value to apiKey for authentication method (#20552)
- fix authentication method default value when docker instance to apiKey
This commit is contained in:
@@ -66,7 +66,7 @@ export class CreateAppCommand {
|
||||
|
||||
const authenticationMethod = skipLocalInstance
|
||||
? 'oauth'
|
||||
: options.authenticationMethod;
|
||||
: (options.authenticationMethod ?? 'apiKey');
|
||||
|
||||
try {
|
||||
await this.validateDirectory(appDirectory);
|
||||
|
||||
Reference in New Issue
Block a user