Add default value to apiKey for authentication method (#20552)

- fix authentication method default value when docker instance to apiKey
This commit is contained in:
martmull
2026-05-13 23:17:44 +02:00
committed by GitHub
parent 49b9660420
commit d81756f2e8
4 changed files with 4 additions and 4 deletions
@@ -66,7 +66,7 @@ export class CreateAppCommand {
const authenticationMethod = skipLocalInstance
? 'oauth'
: options.authenticationMethod;
: (options.authenticationMethod ?? 'apiKey');
try {
await this.validateDirectory(appDirectory);