mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
12 lines
209 B
JavaScript
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([]);
|
|
}
|