From aee9f90ed37542b9668ea243275c678b553257a7 Mon Sep 17 00:00:00 2001 From: FORESTIER Fabien <fabien.forestier@soprasteria.com> Date: Mon, 12 Nov 2018 11:22:14 +0100 Subject: [PATCH] Update swagger title and description --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 8ae74b6..a9e48ce 100644 --- a/src/main.ts +++ b/src/main.ts @@ -9,8 +9,8 @@ async function bootstrap() { app.enableCors({ credentials: true, origin: true}); const options = new DocumentBuilder() .setBasePath('') - .setTitle('Portail Data Email MicroService API') - .setDescription('APIs description for the Email API') + .setTitle('Email service API') + .setDescription('Service providing the method to send emails.') .setVersion('0.1') .addTag('email') .build(); -- GitLab