@@ -12,10 +12,10 @@ import {
1212
1313export const getUniversityDetailPublicApi = ( universityInfoForApplyId : number ) : Promise < AxiosResponse < University > > =>
1414 // TODO: 인증 포함 API로 변경 필요
15- publicAxiosInstance . get ( `/universities /${ universityInfoForApplyId } ` ) ;
15+ publicAxiosInstance . get ( `/univ-apply-infos /${ universityInfoForApplyId } ` ) ;
1616
1717export const getUniversityListPublicApi = ( region ?: RegionEnum | null ) : Promise < AxiosResponse < ListUniversity [ ] > > => {
18- return publicAxiosInstance . get ( "/universities /search" , {
18+ return publicAxiosInstance . get ( "/univ-apply-infos /search" , {
1919 params : {
2020 region : region ,
2121 } ,
@@ -25,14 +25,14 @@ export const getUniversityListPublicApi = (region?: RegionEnum | null): Promise<
2525export const getUniversityFavoriteStatusApi = (
2626 universityInfoForApplyId : number ,
2727) : Promise < AxiosResponse < UniversityFavoriteStatusResponse > > =>
28- axiosInstance . get ( `/universities /${ universityInfoForApplyId } /like` ) ;
28+ axiosInstance . get ( `/univ-apply-infos /${ universityInfoForApplyId } /like` ) ;
2929
3030export const postUniversityFavoriteApi = (
3131 universityInfoForApplyId : number ,
3232) : Promise < AxiosResponse < UniversityFavoriteResponse > > =>
33- axiosInstance . post ( `/universities /${ universityInfoForApplyId } /like` ) ;
33+ axiosInstance . post ( `/univ-apply-infos /${ universityInfoForApplyId } /like` ) ;
3434
3535export const deleteUniversityFavoriteApi = (
3636 universityInfoForApplyId : number ,
3737) : Promise < AxiosResponse < UniversityFavoriteResponse > > =>
38- axiosInstance . delete ( `/universities /${ universityInfoForApplyId } /like` ) ;
38+ axiosInstance . delete ( `/univ-apply-infos /${ universityInfoForApplyId } /like` ) ;
0 commit comments