mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
Tooling update (#184)
* Use a common Makefile/build process * Use ESLint with the pa11y lint config
This commit is contained in:
@@ -12,7 +12,6 @@
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
'use strict';
|
||||
|
||||
const presentTask = require('../view/presenter/task');
|
||||
@@ -21,14 +20,14 @@ module.exports = route;
|
||||
|
||||
// Route definition
|
||||
function route(app) {
|
||||
app.express.get('/', (req, res, next) => {
|
||||
app.webservice.tasks.get({lastres: true}, (err, tasks) => {
|
||||
if (err) {
|
||||
return next(err);
|
||||
app.express.get('/', (request, response, next) => {
|
||||
app.webservice.tasks.get({lastres: true}, (error, tasks) => {
|
||||
if (error) {
|
||||
return next(error);
|
||||
}
|
||||
res.render('index', {
|
||||
response.render('index', {
|
||||
tasks: tasks.map(presentTask),
|
||||
deleted: (typeof req.query.deleted !== 'undefined'),
|
||||
deleted: (typeof request.query.deleted !== 'undefined'),
|
||||
isHomePage: true
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user