퀘스트 강제 완료

경제지표 재화 헤더 스타일 변경
This commit is contained in:
2025-07-18 15:18:45 +09:00
parent 26114c9a9b
commit 99943c0b19
6 changed files with 166 additions and 41 deletions

View File

@@ -185,6 +185,21 @@ export const UserQuestView = async (token, guid) => {
}
};
//퀘스트 테스크 완료
export const UserQuestTaskComplete = async (token, params) => {
try {
const res = await Axios.post(`/api/v1/users/quest/task`, params, {
headers: { Authorization: `Bearer ${token}` },
});
return res.data;
} catch (e) {
if (e instanceof Error) {
throw new Error('UserQuestTaskComplete Error', e);
}
}
};
// 친구목록 조회
export const UserFriendListView = async (token, guid) => {
try {