open-vault/ui/app/models/identity/entity-merge.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

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

26 lines
643 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { attr } from '@ember-data/model';
import { computed } from '@ember/object';
import IdentityModel from './_base';
export default IdentityModel.extend({
formFields: computed(function () {
return ['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,
}),
});