typescript-rest icon indicating copy to clipboard operation
typescript-rest copied to clipboard

Is it possible to return hbs template to load landing page with rest API ?

Open erdysson opened this issue 7 years ago • 0 comments

I wanna use this api for all kind of request & response types and I want to render the 'index.hbs' template for the request made to path '/' like this :

@Path('/') export class IndexController { @GET public index(@ContextResponse response: express.Response) { response.render('index', {title: 'Social | Main Page'}); } } Is it possible?

erdysson avatar Apr 25 '18 16:04 erdysson