Skip to content

Commit

Permalink
feat(sr): Update auth and sign up
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Pino committed Aug 19, 2024
1 parent 80df55b commit e7593e6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/modules/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ export class AuthController {
async signUp(@Body() body: CreateCustomerDto) {
return this.authService.signUp(body);
}

}
2 changes: 1 addition & 1 deletion src/modules/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ export class AuthService {
}

async signUp(data: CreateCustomerDto): Promise<ResponseDTO> {
return await this.customerService.save(data)
return await this.customerService.save(data);
}
}
1 change: 0 additions & 1 deletion src/modules/customer/entities/customer.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
} from 'typeorm';
import * as bcrypt from 'bcrypt';


@Entity()
export class Customer {
@PrimaryGeneratedColumn('uuid')
Expand Down

0 comments on commit e7593e6

Please sign in to comment.