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/app/graphql/server/settings.js

9 lines
468 B

import { settings } from '../../settings';
settings.addGroup('General', function() {
this.section('GraphQL API', function() {
this.add('Graphql_Enabled', false, { type: 'boolean', public: false });
this.add('Graphql_CORS', true, { type: 'boolean', public: false, enableQuery: { _id: 'Graphql_Enabled', value: true } });
this.add('Graphql_Subscription_Port', 3100, { type: 'int', public: false, enableQuery: { _id: 'Graphql_Enabled', value: true } });
});
});