specific appeal types for new appeals

This commit is contained in:
2022-05-19 12:07:56 +01:00
parent ebdcd630f3
commit 06f7d44e81
3 changed files with 84 additions and 2 deletions
+16
View File
@@ -491,6 +491,22 @@ export const getAppealsTypes = () => {
});
};
export const getAppealsTypesForNewAppeal = () => {
return axios
.get(BASE_URL + "/api/endpoint/getappealtypesfornewappeal_api")
.then((res) => res.data)
.catch((error) => {
console.log(error);
let ErrResponse = {
value: [],
errorCode: error.response.status,
errorMsg: error.response.statusText,
};
return ErrResponse;
});
};
export const getLPA = () => {
return axios
.get(BASE_URL + "/api/endpoint/getlpa_api")