Notes endpoint complete, back to working on model abstractions

This commit is contained in:
Ben
2018-09-25 16:57:54 +01:00
parent 7a21961ab9
commit 26b5f2902c
7 changed files with 66 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
import {ControllerHandler} from './controllerHandler';
import {API} from '../models/api/api';
import {Notes} from '../models/notes/notes';
export class GroupController extends ControllerHandler {
static async newGroup(req, res, next) {
let errors = new API.errors(res);
next()
}
}