1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-03 00:25:57 +09:00
cherrypick/src/misc/fetch-meta.ts

24 lines
497 B
TypeScript
Raw Normal View History

import Meta, { IMeta } from '../models/meta';
const defaultMeta: any = {
name: 'Misskey',
langs: [],
cacheRemoteFiles: true,
localDriveCapacityMb: 256,
remoteDriveCapacityMb: 8,
hidedTags: [],
stats: {
originalNotesCount: 0,
originalUsersCount: 0
},
maxNoteTextLength: 1000,
enableTwitterIntegration: false,
enableGithubIntegration: false,
};
export default async function(): Promise<IMeta> {
const meta = await Meta.findOne({});
return Object.assign({}, defaultMeta, meta);
}