Skip to content

Commit

Permalink
[FE] FEAT: 발표 가능한 날짜 api 추가 #1691
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunk03 committed Oct 10, 2024
1 parent f90817a commit 52648ad
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/src/Presentation/api/axios/axios.custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@ export const axiosMyPresentationLog = async (page: number): Promise<any> => {
}
};

const axiosGetPresentationAbleDatesURL = "/v5/presentation/able-date";
export const axiosGetPresentationAbleDates = async (): Promise<any> => {
try {
const response = await instance.get(axiosGetPresentationAbleDatesURL);
return response;
} catch (error) {
throw error;
}
};

/**
* 수요지식회 (구 까비지식회) Admin API
*/
Expand Down

0 comments on commit 52648ad

Please sign in to comment.