Notes endpoint complete, back to working on model abstractions
This commit is contained in:
16
src/controllers/groupController.js
Normal file
16
src/controllers/groupController.js
Normal 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()
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user