2
0
mirror of https://github.com/frappe/books.git synced 2025-04-03 16:51:51 +00:00
18alantom 5489cd979f incr: add registration of models onload
- refactor a few imports
- move model file into plugin
2023-07-24 14:53:57 +05:30

20 lines
352 B
TypeScript

import type { Fyo } from 'fyo';
export default function initialize(fyo: Fyo) {
const models = getModels(fyo);
fyo.doc.registerModels(models);
}
function getModels(fyo: Fyo) {
class PluginTemplate extends fyo.Doc {
name?: string;
value?: string;
get isPluginTemplate() {
return true;
}
}
return { PluginTemplate };
}