Skip to content

Commit e7593e6

Browse files
committed
feat(sr): Update auth and sign up
1 parent 80df55b commit e7593e6

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/modules/auth/auth.controller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ export class AuthController {
2121
async signUp(@Body() body: CreateCustomerDto) {
2222
return this.authService.signUp(body);
2323
}
24-
2524
}

src/modules/auth/auth.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ export class AuthService {
5454
}
5555

5656
async signUp(data: CreateCustomerDto): Promise<ResponseDTO> {
57-
return await this.customerService.save(data)
57+
return await this.customerService.save(data);
5858
}
5959
}

src/modules/customer/entities/customer.entity.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
} from 'typeorm';
1212
import * as bcrypt from 'bcrypt';
1313

14-
1514
@Entity()
1615
export class Customer {
1716
@PrimaryGeneratedColumn('uuid')

0 commit comments

Comments
 (0)