9d8f7b081d
* Add Discord auth * Apply review 175263424
26 lines
547 B
TypeScript
26 lines
547 B
TypeScript
import Meta, { IMeta } from '../models/meta';
|
|
|
|
const defaultMeta: any = {
|
|
name: 'Misskey',
|
|
maintainer: {},
|
|
langs: [],
|
|
cacheRemoteFiles: true,
|
|
localDriveCapacityMb: 256,
|
|
remoteDriveCapacityMb: 8,
|
|
hidedTags: [],
|
|
stats: {
|
|
originalNotesCount: 0,
|
|
originalUsersCount: 0
|
|
},
|
|
maxNoteTextLength: 1000,
|
|
enableTwitterIntegration: false,
|
|
enableGithubIntegration: false,
|
|
enableDiscordIntegration: false
|
|
};
|
|
|
|
export default async function(): Promise<IMeta> {
|
|
const meta = await Meta.findOne({});
|
|
|
|
return Object.assign({}, defaultMeta, meta);
|
|
}
|