22 lines
608 B
JavaScript
22 lines
608 B
JavaScript
import { createAsyncThunk } from "@reduxjs/toolkit";
|
|
import axios from "axios";
|
|
import { LOADING_END, LOADING_START } from "../../../lib/redux/slices/appSlice";
|
|
|
|
export const guildAuthCodeSubmitService = createAsyncThunk(
|
|
"GUILD_AUTH_CODE_SUBMIT_SERVICE",
|
|
async (d, { dispatch }) => {
|
|
dispatch(LOADING_START());
|
|
try {
|
|
const { data, status } = await axios.put(
|
|
"steward-guild-allocation/0/",
|
|
d
|
|
);
|
|
dispatch(LOADING_END());
|
|
return { data, status };
|
|
} catch (e) {
|
|
dispatch(LOADING_END());
|
|
return { error: e.response.data.result };
|
|
}
|
|
}
|
|
);
|