RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/canned-responses/client/collections/CannedResponse.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Mongo } from 'meteor/mongo';

export const CannedResponse = new Mongo.Collection<{
    _id: string;
    shortcut: string;
    text: string;
}>(null);