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/server/methods/getSetupWizardParameters.js

16 lines
478 B

import { Meteor } from 'meteor/meteor';
import { Settings } from '../../app/models';
import { settings } from '../../app/settings/server';
Meteor.methods({
getSetupWizardParameters() {
const setupWizardSettings = Settings.findSetupWizardSettings().fetch();
const serverAlreadyRegistered = !!settings.get('Cloud_Workspace_Client_Id') || process.env.DEPLOY_PLATFORM === 'rocket-cloud';
return {
settings: setupWizardSettings,
serverAlreadyRegistered,
};
},
});