Skip to content

Commit

Permalink
hotfix: send a message
Browse files Browse the repository at this point in the history
  • Loading branch information
findCarolinaCosta committed Jul 15, 2024
1 parent dcddd10 commit dd00be7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions apps/server/src/modules/contact/contact.controller.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import {
Body,
Controller,
HttpStatus,
Injectable,
Options,
Post,
ValidationPipe,
} from '@nestjs/common';
Expand Down Expand Up @@ -42,4 +44,9 @@ export class ContactController {
throw error;
}
}

@Options('*')
optionsHandler() {
return HttpStatus.OK;
}
}

0 comments on commit dd00be7

Please sign in to comment.