RocketChat/Rocket.Chat

View on GitHub
apps/meteor/server/models/raw/Apps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IAppsModel } from '@rocket.chat/model-typings';
import type { Db } from 'mongodb';

import { BaseRaw } from './BaseRaw';

export class AppsModel extends BaseRaw<any> implements IAppsModel {
    constructor(db: Db) {
        super(db, 'apps');
    }
}