19 lines
491 B
JavaScript
19 lines
491 B
JavaScript
|
import IdentityModel from './_base';
|
||
|
import DS from 'ember-data';
|
||
|
const { attr } = DS;
|
||
|
|
||
|
export default IdentityModel.extend({
|
||
|
formFields: ['toEntityId', 'fromEntityIds', 'force'],
|
||
|
toEntityId: attr('string', {
|
||
|
label: 'Entity to merge to',
|
||
|
}),
|
||
|
fromEntityIds: attr({
|
||
|
label: 'Entities to merge from',
|
||
|
editType: 'stringArray',
|
||
|
}),
|
||
|
force: attr('boolean', {
|
||
|
label: 'Keep MFA secrets from the "to" entity if there are merge conflicts',
|
||
|
defaultValue: false,
|
||
|
}),
|
||
|
});
|