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