From 050f000f6a58b69571b5380a02da2f15acb2ec4f Mon Sep 17 00:00:00 2001 From: rahuldahal Date: Mon, 26 Aug 2024 21:49:55 +0545 Subject: [PATCH] chore: update project name --- package.json | 2 +- src/docs/swagger.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d0bf236..2ddf12f 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "co-edit", + "name": "syncode", "version": "0.0.1", "description": "", "author": "", diff --git a/src/docs/swagger.ts b/src/docs/swagger.ts index 72b7611..bbf3688 100644 --- a/src/docs/swagger.ts +++ b/src/docs/swagger.ts @@ -3,9 +3,9 @@ import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'; export default function setupSwagger(app: INestApplication) { const swaggerConfig = new DocumentBuilder() - .setTitle('Co-edit API Documentation') + .setTitle('Syncode API Documentation') .setDescription( - 'Use the documentation of the API below as a reference to make requests.' + 'Use the documentation of the API below as a reference to make requests.', ) .setVersion('1.0') .addBearerAuth()