Make new option return similar to new question and form

Signed-off-by: Jonas Rittershofer <jotoeri@users.noreply.github.com>
This commit is contained in:
Jonas Rittershofer 2021-01-22 00:49:06 +01:00
Родитель a75262ee87
Коммит 909f29fed4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A865740F334316E0
4 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -596,9 +596,7 @@ class ApiController extends Controller {
$option = $this->optionMapper->insert($option);
return new DataResponse([
'id' => $option->getId()
]);
return new DataResponse($option->read());
}
/**

Просмотреть файл

@ -145,7 +145,7 @@ export default {
async createAnswer(answer) {
try {
const response = await axios.post(generateOcsUrl('apps/forms/api/v1', 2) + 'option', {
questionId: answer.question_id,
questionId: answer.questionId,
text: answer.text,
})
console.debug('Created answer', answer)

Просмотреть файл

@ -236,7 +236,7 @@ export default {
const options = this.options.slice()
options.push({
id: GenRandomId(),
question_id: this.id,
questionId: this.id,
text: '',
local: true,
})

Просмотреть файл

@ -243,7 +243,7 @@ export default {
const options = this.options.slice()
options.push({
id: GenRandomId(),
question_id: this.id,
questionId: this.id,
text: '',
local: true,
})