Started adding results

This commit is contained in:
2024-02-24 01:34:32 -05:00
parent 65fc2b753b
commit 6761aaa413
5 changed files with 122 additions and 6 deletions

View File

@ -9,7 +9,7 @@ exports.getIndex = async function(req, res) {
// GET /test/list - list of tests
exports.getList = async function(req, res) {
var tests = await Test.findAll();
var tests = await Test.findAll({order: [['updatedAt', 'DESC']]});
res.render('test/list', {
tests: tests
});