delete function test send mail del service del api gateway

This commit is contained in:
Mariela 2022-07-22 00:22:09 -06:00
parent d82457f9c3
commit 9e04a6e1c5
1 changed files with 1 additions and 16 deletions

View File

@ -343,20 +343,5 @@ export class AppController {
return this.appService.html(email, name); return this.appService.html(email, name);
} }
// #==== API Users
@Post('user/testSendMail')
testSendMail(
@Body('dni') dni: string,
@Body('name') name: string,
@Body('last_name') last_name: string,
@Body('email') email: string,
@Body('phone') phone: number,
@Body('password') password: string,
@Body('user_type') user_type: string,
@Body('status') status: string,
@Body('date_entry') date_entry: Date,
) {
return this.appService.testSendMail(dni, name, last_name, email, phone, password,
user_type, status, date_entry);
}
} }