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/client/hooks/useIsFederationEnabled.ts

8 lines
376 B

import { useSetting } from '@rocket.chat/ui-contexts';
export const useIsFederationEnabled = () => {
const matrixFederationEnabled = useSetting('Federation_Matrix_enabled', false);
const serviceFederationEnabled = useSetting('Federation_Service_Enabled', false);
const federationEnabled = matrixFederationEnabled || serviceFederationEnabled;
return federationEnabled;
};