퀘스트 강제 완료
경제지표 재화 헤더 스타일 변경
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user