mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 18:13:07 +02:00
d84796588c
* cleanup: trim trailing whitespace * update(`.editorconfig`) --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { Schema } from '@/misc/schema';
|
|
import Ajv from 'ajv';
|
|
|
|
export const getValidator = (paramDef: Schema) => {
|
|
const ajv = new Ajv({
|
|
useDefaults: true,
|
|
});
|
|
ajv.addFormat('misskey:id', /^[a-zA-Z0-9]+$/);
|
|
|
|
return ajv.compile(paramDef);
|
|
}
|