mirror of https://github.com/status-im/consul.git
16 lines
422 B
JavaScript
16 lines
422 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { validatePresence } from 'ember-changeset-validations/validators';
|
|
import validateSometimes from 'consul-ui/validations/sometimes';
|
|
export default (schema) => ({
|
|
Name: [validatePresence(true)],
|
|
Value: [
|
|
validateSometimes(validatePresence(true), function () {
|
|
return this.get('HeaderType') !== 'Present';
|
|
}),
|
|
],
|
|
});
|