2022-10-10 08:29:25 +00:00
|
|
|
import {AxiosResponse} from "axios";
|
|
|
|
import {$axios} from "~/utils/api";
|
2022-10-07 14:15:53 +00:00
|
|
|
import {RestResponse} from "~/repositories/models/rest-response.model";
|
|
|
|
import {Question} from "~/repositories/models/question.model";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
findAllByAxeId(axeId: number) {
|
|
|
|
return $axios.get<RestResponse<Question>>("/questions/search/byAxeId", {
|
|
|
|
params: {
|
|
|
|
id: axeId
|
|
|
|
}
|
2022-10-10 08:29:25 +00:00
|
|
|
}).then((response: AxiosResponse<RestResponse<Question>>) => {
|
|
|
|
response.data._embedded.questions.map(question => {
|
|
|
|
question.id = Number(question._links.self.href.replace($axios.defaults.baseURL + "/questions/", ""));
|
|
|
|
return question;
|
|
|
|
});
|
|
|
|
return response;
|
2022-10-07 14:15:53 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|