ncc-prototype-email-alerts-sub
Version:
Northumberland Council Front End Email Alerts Subscription Prototype
10 lines (9 loc) • 318 B
text/typescript
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]
}