27bb03bbc0
* adding copyright header * fix fmt and a test
24 lines
578 B
JavaScript
24 lines
578 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { Factory } from 'ember-cli-mirage';
|
|
|
|
export default Factory.extend({
|
|
base_url: 'okta.com',
|
|
mount_accessor: '',
|
|
name: '', // returned but cannot be set at this time
|
|
namespace_id: 'root',
|
|
org_name: 'dev-foobar',
|
|
type: 'okta',
|
|
username_template: '', // returned but cannot be set at this time
|
|
|
|
afterCreate(record) {
|
|
if (record.name) {
|
|
console.warn('Endpoint ignored these unrecognized parameters: [name]'); // eslint-disable-line
|
|
record.name = '';
|
|
}
|
|
},
|
|
});
|