17 lines
456 B
TypeScript
17 lines
456 B
TypeScript
import database from '..';
|
|
import { TAppDatabase } from '../interfaces';
|
|
import { SUBSCRIPTIONS_TABLE } from '../model/Subscription';
|
|
|
|
const getCollection = (db: TAppDatabase) => db.get(SUBSCRIPTIONS_TABLE);
|
|
|
|
export const getSubscriptionByRoomId = async (rid: string) => {
|
|
const db = database.active;
|
|
const subCollection = getCollection(db);
|
|
try {
|
|
const result = await subCollection.find(rid);
|
|
return result;
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
};
|