more work on the note endpoint, for now im going to work around it

This commit is contained in:
Ben
2018-09-24 14:05:47 +01:00
parent d72127bf2b
commit bff3461278
3 changed files with 12 additions and 11 deletions

View File

@@ -2,10 +2,8 @@ import {Groups} from './groups';
import {Database} from '../database/database';
export class Notes extends Groups {
static async newNote(id, content, creatorid, order) {
Database.notes.newNote(id, null, )
static async newNote(id, content, creatorid, order) {
Database.note.newNote(id, content, creatorid, order, null);
}
static async genID() {