Merge pull request #749 from nextcloud/fix/option_response

Make new option return similar to new question and form
This commit is contained in:
John Molakvoæ 2021-02-17 12:10:58 +01:00 коммит произвёл GitHub
Родитель be454e824a 909f29fed4
Коммит 79a1fde120
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 6 удалений

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

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

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

@ -147,7 +147,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,
})