mirror of
https://github.com/status-im/consul.git
synced 2025-02-21 01:48:20 +00:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { validatePresence, validateLength } from 'ember-changeset-validations/validators';
|
|
export default {
|
|
Key: [validatePresence(true), validateLength({ min: 1 })],
|
|
};
|