2021-08-13 23:14:07 +08:00
|
|
|
import path from 'path';
|
2021-09-23 00:16:04 +08:00
|
|
|
import { PluginOptions } from '@nocobase/server';
|
2021-08-13 23:14:07 +08:00
|
|
|
|
2021-09-23 00:16:04 +08:00
|
|
|
export default {
|
|
|
|
name: 'system-settings',
|
|
|
|
async load() {
|
|
|
|
const database = this.app.db;
|
2021-08-13 23:14:07 +08:00
|
|
|
|
2021-12-08 09:10:44 +08:00
|
|
|
await database.import({
|
2021-09-23 00:16:04 +08:00
|
|
|
directory: path.resolve(__dirname, 'collections'),
|
|
|
|
});
|
2021-09-11 18:53:26 +08:00
|
|
|
|
2021-12-06 21:23:34 +08:00
|
|
|
const SystemSetting = database.getCollection('system_settings');
|
|
|
|
|
2021-09-23 00:16:04 +08:00
|
|
|
this.app.on('db.init', async () => {
|
2021-12-06 21:23:34 +08:00
|
|
|
await SystemSetting.repository.create({
|
|
|
|
values: {
|
|
|
|
title: 'NocoBase',
|
|
|
|
logo: {
|
|
|
|
title: 'nocobase-logo',
|
|
|
|
filename: '682e5ad037dd02a0fe4800a3e91c283b.png',
|
|
|
|
extname: '.png',
|
|
|
|
mimetype: 'image/png',
|
|
|
|
url: 'https://nocobase.oss-cn-beijing.aliyuncs.com/682e5ad037dd02a0fe4800a3e91c283b.png',
|
|
|
|
},
|
2021-09-23 00:16:04 +08:00
|
|
|
},
|
|
|
|
});
|
2021-09-11 18:53:26 +08:00
|
|
|
});
|
2021-12-06 21:23:34 +08:00
|
|
|
},
|
2021-09-23 00:16:04 +08:00
|
|
|
} as PluginOptions;
|