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/routes/avatar/index.js

9 lines
250 B

import { WebApp } from 'meteor/webapp';
import { roomAvatar } from './room';
import { userAvatar } from './user';
import './middlewares';
WebApp.connectHandlers.use('/avatar/room/', roomAvatar);
WebApp.connectHandlers.use('/avatar/', userAvatar);