RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/federation/server/startup/generateKeys.js

Summary

Maintainability
A
0 mins
Test Coverage
import { FederationKeys } from '@rocket.chat/models';

// Create key pair if needed
(async () => {
    if (!(await FederationKeys.getPublicKey())) {
        await FederationKeys.generateKeys();
    }
})();