forked from external-repos/pa11y-dashboard
Fix JSCS errors
This commit is contained in:
@@ -3,10 +3,10 @@
|
||||
module.exports = route;
|
||||
|
||||
// Route definition
|
||||
function route (app) {
|
||||
function route(app) {
|
||||
|
||||
app.express.post('/:id/unignore', function (req, res, next) {
|
||||
app.webservice.task(req.params.id).get({}, function (err, task) {
|
||||
app.express.post('/:id/unignore', function(req, res, next) {
|
||||
app.webservice.task(req.params.id).get({}, function(err, task) {
|
||||
if (err) {
|
||||
return next();
|
||||
}
|
||||
@@ -18,7 +18,7 @@ function route (app) {
|
||||
if (typeof req.body.rule === 'string' && indexOfRule !== -1) {
|
||||
edit.ignore.splice(indexOfRule, 1);
|
||||
}
|
||||
app.webservice.task(req.params.id).edit(edit, function () {
|
||||
app.webservice.task(req.params.id).edit(edit, function() {
|
||||
res.redirect('/' + req.params.id + '?rule-unignored');
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user