2018-11-05 23:14:43 +01:00
|
|
|
import Meta, { IMeta } from '../models/meta';
|
|
|
|
|
|
|
|
const defaultMeta: any = {
|
|
|
|
name: 'Misskey',
|
2018-11-07 04:28:53 +01:00
|
|
|
langs: [],
|
2018-11-05 23:52:13 +01:00
|
|
|
cacheRemoteFiles: true,
|
2018-11-05 23:14:43 +01:00
|
|
|
localDriveCapacityMb: 256,
|
|
|
|
remoteDriveCapacityMb: 8,
|
|
|
|
hidedTags: [],
|
|
|
|
stats: {
|
|
|
|
originalNotesCount: 0,
|
|
|
|
originalUsersCount: 0
|
|
|
|
},
|
2018-11-07 05:14:52 +01:00
|
|
|
maxNoteTextLength: 1000,
|
|
|
|
enableTwitterIntegration: false,
|
|
|
|
enableGithubIntegration: false,
|
2018-11-05 23:14:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default async function(): Promise<IMeta> {
|
|
|
|
const meta = await Meta.findOne({});
|
|
|
|
|
|
|
|
return Object.assign({}, defaultMeta, meta);
|
|
|
|
}
|