cityssm/parking-ticket-system

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

Summary

Maintainability
A
0 mins
Test Coverage
F
25%
import getUnreceivedLookupBatches from '../../database/parkingDB/getUnreceivedLookupBatches.js';
export default function handler(_request, response) {
    const unreceivedBatches = getUnreceivedLookupBatches(false);
    response.render('mto-plateImport', {
        headTitle: 'MTO Licence Plate Ownership Import',
        batches: unreceivedBatches
    });
}