convector-rest-api
convector-rest-api copied to clipboard
Controller and controler
Hello,
After following the steps for the Auto-generated API (link), I noticed that sometimes the system refers to Controllers (with double 't') as Controler (with single 't'). One example is the router.js file, as shown below:
import * as express from 'express';
import {
CarControler_create_post,
CarControler_get_get } from './controllers'
export default express.Router()
.post('/carcontroler/create', CarControler_create_post)
.get('/carcontroler/get/:id', CarControler_get_get)
It seems to be an typo in some part of the code. Could you please take a look at it?
[]s