temp
This commit is contained in:
@@ -289,9 +289,19 @@
|
||||
|
||||
import { User, UserInit, UserServices } from '@kevisual/code-center-module/models';
|
||||
export { User, UserInit, UserServices };
|
||||
UserInit(null, null, {
|
||||
alter: true,
|
||||
logging: false,
|
||||
}).catch((e) => {
|
||||
console.error('User sync', e);
|
||||
});
|
||||
import { OrgInit } from '@kevisual/code-center-module/models';
|
||||
const init = async () => {
|
||||
await OrgInit(null, null, {
|
||||
alter: true,
|
||||
logging: false,
|
||||
}).catch((e) => {
|
||||
console.error('Org sync', e);
|
||||
});
|
||||
await UserInit(null, null, {
|
||||
alter: true,
|
||||
logging: false,
|
||||
}).catch((e) => {
|
||||
console.error('User sync', e);
|
||||
});
|
||||
};
|
||||
init();
|
||||
|
||||
Reference in New Issue
Block a user