Enable downloads for all

This commit is contained in:
Fergal Moran
2018-10-26 21:23:25 +01:00
parent aeda96acc8
commit f3b40713ae
29 changed files with 1308 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
/**
* 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([]);
}