mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 17:53:08 +02:00
15 lines
420 B
TypeScript
15 lines
420 B
TypeScript
import * as mongo from 'mongodb';
|
|
import db from '../db/mongodb';
|
|
|
|
const NoteWatching = db.get<INoteWatching>('noteWatching');
|
|
NoteWatching.createIndex('userId');
|
|
NoteWatching.createIndex('noteId');
|
|
NoteWatching.createIndex(['userId', 'noteId'], { unique: true });
|
|
export default NoteWatching;
|
|
|
|
export interface INoteWatching {
|
|
_id: mongo.ObjectID;
|
|
createdAt: Date;
|
|
userId: mongo.ObjectID;
|
|
noteId: mongo.ObjectID;
|
|
}
|