Files
habitica/website/server/libs/chatReporting/chatReporterFactory.js
2018-02-11 08:35:24 -07:00

12 lines
329 B
JavaScript

import GroupChatReporter from './groupChatReporter';
// import InboxChatReporter from './inboxChatReporter';
export function chatReporterFactory (type, req, res) {
if (type === 'Group') {
return new GroupChatReporter(req, res);
}
// else if (type === 'Inbox') {
// return new InboxChatReporter(req, res);
// }
}