Skip to content

Commit

Permalink
🐛[fix]: 사용자 취향 저장용 리소스에서 baseResource 제거 및 사용자ID는 스웨거에서 보이지 않도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyesooo committed Nov 5, 2023
1 parent c464076 commit 4a85689
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.pingpong.quoteBakery.app.resource;

import com.pingpong.quoteBakery.com.resource.BaseResource;
import io.swagger.v3.oas.annotations.Hidden;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.List;
import lombok.Getter;
Expand All @@ -9,7 +9,8 @@

@Getter
@Setter
public class UserPrefCreateResource extends BaseResource {
public class UserPrefCreateResource {
@Hidden // Hide this operation from Swagger UI
@Schema(description = "사용자ID")
private Long userId;
@Schema(description = "맛 리스트")
Expand Down

0 comments on commit 4a85689

Please sign in to comment.