Skip to content

Commit

Permalink
refactor: eliminate unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyp3Boy committed Oct 15, 2024
1 parent fba670c commit 4835738
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { UpdateAuthDto } from './dto/update-auth.dto';
@Injectable()
export class AuthService {
create(createAuthDto: CreateAuthDto) {
console.log('createAuthDto', createAuthDto);
return 'This action adds a new auth';
}

Expand All @@ -17,6 +18,7 @@ export class AuthService {
}

update(id: number, updateAuthDto: UpdateAuthDto) {
console.log('updateAuthDto', updateAuthDto);
return `This action updates a #${id} auth`;
}

Expand Down
2 changes: 2 additions & 0 deletions src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { UpdateUserDto } from './dto/update-user.dto';
@Injectable()
export class UsersService {
create(createUserDto: CreateUserDto) {
console.log('createUserDto', createUserDto);
return 'This action adds a new user';
}

Expand All @@ -17,6 +18,7 @@ export class UsersService {
}

update(id: number, updateUserDto: UpdateUserDto) {
console.log('updateUserDto', updateUserDto);
return `This action updates a #${id} user`;
}

Expand Down

0 comments on commit 4835738

Please sign in to comment.