-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: signin, singup페이지 이전 미션 미개발 부분 진행
- Loading branch information
김보민
authored and
김보민
committed
Jun 29, 2024
1 parent
d7c5cb9
commit fcecbef
Showing
7 changed files
with
94 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export const baseUrl = "https://bootcamp-api.codeit.kr/api/"; | ||
export const baseUrl = "https://bootcamp-api.codeit.kr/api/linkbrary/v1/"; | ||
|
||
export const ApiUrl = { | ||
sampleUser: `${baseUrl}sample/user`, | ||
usersFolders: `${baseUrl}users/1/folders`, | ||
usersLinks: `${baseUrl}users/1/links`, | ||
signIn: `${baseUrl}sign-in`, | ||
signUp: `${baseUrl}sign-up`, | ||
checkEmail: `${baseUrl}check-email`, | ||
signIn: `${baseUrl}auth/sign-in`, | ||
signUp: `${baseUrl}auth/sign-up`, | ||
checkEmail: `${baseUrl}users/check-email`, | ||
}; |