Skip to content

Commit

Permalink
Update serverPath.ts
Browse files Browse the repository at this point in the history
API 엔드포인트 재변경
  • Loading branch information
jobkaeHenry authored Nov 29, 2023
1 parent c9bf7f9 commit eef2d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/const/serverPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ export const LOGOUT_BFF = "/api/auth/logout-internal" as const;
/**
* 게시물리스트를 받아오거나, 작성하는 Path
*/
export const POST_LIST = "/posts/old" as const;
export const POST_LIST = "/posts" as const;

/**
* 게시물리스트를 받아오거나, 작성하는 Path 버전2 (Breaking Change)
*/
export const POST_LIST_V2 = "/posts" as const;
export const POST_LIST_V2 = "/posts/v2" as const;
/**
* ID(pk) 를 입력받아 해당 포스트를 지우는 URL
*/
Expand Down

0 comments on commit eef2d79

Please sign in to comment.