mirror of https://github.com/status-im/consul.git
6 lines
205 B
JavaScript
6 lines
205 B
JavaScript
|
import { validatePresence, validateLength } from 'ember-changeset-validations/validators';
|
||
|
export default {
|
||
|
Name: [validatePresence(true), validateLength({ min: 1 })],
|
||
|
Type: validatePresence(true),
|
||
|
};
|