Skip to content

Commit

Permalink
Feat(#54): fix invalid uri prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
versatile0010 committed Nov 16, 2023
1 parent 82ceda3 commit 00ca3c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
@Slf4j
@Tag(name = "members", description = "사용자 관련 API")
@RestController
@RequestMapping("/api/members")
@RequiredArgsConstructor
public class MemberController {
private final MemberService memberService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
@Entity
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
@RequestMapping("/api/members")
@Table(name = "MEMBER")
public class Member extends BaseTimeEntity {
@Id
Expand Down

0 comments on commit 00ca3c9

Please sign in to comment.