mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 18:47:51 +00:00
17 lines
320 B
JavaScript
17 lines
320 B
JavaScript
import { required, minLength } from 'vuelidate/lib/validators';
|
|
|
|
export const validLabelCharacters = (str = '') => !!str && !str.includes(' ');
|
|
|
|
export default {
|
|
title: {
|
|
required,
|
|
minLength: minLength(2),
|
|
validLabelCharacters,
|
|
},
|
|
description: {},
|
|
color: {
|
|
required,
|
|
},
|
|
showOnSidebar: {},
|
|
};
|