diff --git a/template/data.ts b/template/data.ts index 4c08a7001..4be5f04ec 100644 --- a/template/data.ts +++ b/template/data.ts @@ -170,6 +170,7 @@ export const domain: Domain[] = [ ]; const DEV_SMS_PASSPORT_ID = 'SMS_DEV'; +const DEV_PASSWORD_PASSPORT_ID = 'PASSWORD_DEV' const applicationPassport: ApplicationPassport[] = [ { @@ -183,11 +184,17 @@ const applicationPassport: ApplicationPassport[] = [ const passport: Passport[] = [ { id: DEV_SMS_PASSPORT_ID, - type:'sms', - config:{ - mockSend:true, + type: 'sms', + config: { + mockSend: true, }, - enabled:true, + enabled: true, + systemId: DEV_SYSTEM_ID, + }, + { + id: DEV_PASSWORD_PASSPORT_ID, + type: 'password', + enabled: false, systemId: DEV_SYSTEM_ID, }, ];