convector-rest-api icon indicating copy to clipboard operation
convector-rest-api copied to clipboard

Controller and controler

Open BardoBravo opened this issue 5 years ago • 0 comments

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

BardoBravo avatar Nov 09 '19 23:11 BardoBravo