blob: d1302224343173030a1a5061496aa7ee49b2bfc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// A list of additional names! These can be used for a variety of purposes,
// e.g. providing extra searchable titles, localizations, romanizations or
// original titles, and so on. Each item has a name and, optionally, a
// descriptive annotation.
import {isAdditionalNameList} from '#validators';
export default function() {
return {
flags: {update: true, expose: true},
update: {validate: isAdditionalNameList},
};
}
|