open-vault/ui/mirage/factories/mfa-totp-method.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

28 lines
578 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Factory } from 'ember-cli-mirage';
export default Factory.extend({
algorithm: 'SHA1',
digits: 6,
issuer: 'Vault',
key_size: 20,
max_validation_attempts: 5,
name: '', // returned but cannot be set at this time
namespace_id: 'root',
period: 30,
qr_size: 200,
skew: 1,
type: 'totp',
afterCreate(record) {
if (record.name) {
console.warn('Endpoint ignored these unrecognized parameters: [name]'); // eslint-disable-line
record.name = '';
}
},
});