You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/validations/kv.js

6 lines
205 B

import { validatePresence, validateLength } from 'ember-changeset-validations/validators';
export default {
Key: [validatePresence(true), validateLength({ min: 1 })],
Value: validatePresence(true),
};