mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* update mfa methods to use namespace_path instead of namespace_id * add test for empty namespace path and add namespace path to factories * add changelog entry * fix name * hide namespace label when path is empty and test updates
18 lines
449 B
JavaScript
18 lines
449 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Factory } from 'miragejs';
|
|
|
|
export default Factory.extend({
|
|
use_signature: true,
|
|
idp_url: 'https://foobar.pingidentity.com/pingid',
|
|
admin_url: 'https://foobar.pingidentity.com/pingid',
|
|
authenticator_url: 'https://authenticator.pingone.com/pingid/ppm',
|
|
org_alias: 'foobarbaz',
|
|
type: 'pingid',
|
|
username_template: '',
|
|
namespace_path: 'admin/',
|
|
});
|