cityssm/parking-ticket-system

View on GitHub
handlers/plates-ontario-get/mtoExport.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import getLookupBatch from '../../database/parkingDB/getLookupBatch.js';
export default function handler(_request, response) {
    const latestUnlockedBatch = getLookupBatch(-1);
    response.render('mto-plateExport', {
        headTitle: 'MTO Licence Plate Export',
        batch: latestUnlockedBatch
    });
}