UNPKG

ncc-prototype-email-alerts-sub

Version:

Northumberland Council Front End Email Alerts Subscription Prototype

10 lines (9 loc) 318 B
import { postCodeController } from "../controllers/postCodeController"; import { postCodeValidator } from "../libs/formValidators"; import { Route } from "../types/route"; export const route: Route = { controller: postCodeController, route: '/postcode', type: 'post', validators: [postCodeValidator] }