Files
dss.web/server/api/thing/thing.controller.js
2018-10-26 21:23:25 +01:00

12 lines
209 B
JavaScript

/**
* Using Rails-like standard naming convention for endpoints.
* GET /api/things -> index
*/
'use strict';
// Gets a list of Things
export function index(req, res) {
res.json([]);
}