push rasad front on new repo
This commit is contained in:
21
src/features/guild/services/guild-auth-code-submit.js
Normal file
21
src/features/guild/services/guild-auth-code-submit.js
Normal file
@@ -0,0 +1,21 @@
|
||||
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 };
|
||||
}
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user