The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/server/settings/meta.ts

28 lines
674 B

import { settingsRegistry } from '../../app/settings/server';
export const createMetaSettings = () =>
settingsRegistry.addGroup('Meta', async function () {
await this.add('Meta_language', '', {
type: 'string',
});
await this.add('Meta_fb_app_id', '', {
type: 'string',
secret: true,
});
await this.add('Meta_robots', 'INDEX,FOLLOW', {
type: 'string',
});
await this.add('Meta_google-site-verification', '', {
type: 'string',
secret: true,
});
await this.add('Meta_msvalidate01', '', {
type: 'string',
secret: true,
});
return this.add('Meta_custom', '', {
type: 'code',
code: 'text/html',
multiline: true,
});
});