19 lines
449 B
TypeScript
19 lines
449 B
TypeScript
import {Factory} from '../support/factory'
|
|
|
|
// Fixed base32 secret so tests can generate deterministic codes with otplib.
|
|
export const FIXED_TOTP_SECRET = 'JBSWY3DPEHPK3PXP'
|
|
|
|
export class TotpFactory extends Factory {
|
|
static table = 'totp'
|
|
|
|
static factory() {
|
|
return {
|
|
id: '{increment}',
|
|
user_id: 1,
|
|
secret: FIXED_TOTP_SECRET,
|
|
enabled: true,
|
|
url: `otpauth://totp/Vikunja:test?secret=${FIXED_TOTP_SECRET}&issuer=Vikunja`,
|
|
}
|
|
}
|
|
}
|