8 lines
180 B
JavaScript
8 lines
180 B
JavaScript
import { NoteWatchings } from "../../models/index.js";
|
|
export default (async (me, note)=>{
|
|
await NoteWatchings.delete({
|
|
noteId: note.id,
|
|
userId: me
|
|
});
|
|
});
|