Skip to content

Commit

Permalink
fix: 유저 목록 응답에서 비밀번호 제거 (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coalery authored Jan 29, 2025
2 parents 81807e4 + aef5a33 commit eee09df
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/application/user/query/view/UserView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export interface ProfileView {
export interface UserView {
id: number;
name: string;
password: string | null;
profile: ProfileView;
admission: string;
state: UserState;
Expand Down
1 change: 0 additions & 1 deletion src/app/interface/user/manager/dto/ListUserResponseDto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export class ListUserResponseDto {
users: view.users.map((user) => ({
id: user.id,
name: user.name,
password: user.password,
profile: {
name: user.profile.name,
college: user.profile.college,
Expand Down
1 change: 0 additions & 1 deletion src/app/interface/user/manager/dto/common/UserResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export class UserProfileResponse {
export class UserResponse {
id!: number;
name!: string;
password!: string | null;
profile!: UserProfileResponse;
admission!: string;
state!: UserState;
Expand Down

0 comments on commit eee09df

Please sign in to comment.