Files
habitica/website/server/libs/chatReporting/chatReporterFactory.js
2019-10-08 16:57:10 +02:00

11 lines
310 B
JavaScript

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