cityssm/parking-ticket-system

View on GitHub
handlers/tickets-post/doGetRecentConvictionBatches.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Request, Response } from 'express'

import getLastTenConvictionBatches from '../../database/parkingDB/getLastTenConvictionBatches.js'

export default function handler(_request: Request, response: Response): void {
  const batches = getLastTenConvictionBatches()

  response.json(batches)
}