mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 17:03:08 +02:00
23 lines
497 B
TypeScript
23 lines
497 B
TypeScript
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);
|
|
}
|