summaryrefslogtreecommitdiff
path: root/src/api/endpoints/posts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/endpoints/posts')
-rw-r--r--src/api/endpoints/posts/create.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/endpoints/posts/create.js b/src/api/endpoints/posts/create.js
index 61f8e714fb..607867403a 100644
--- a/src/api/endpoints/posts/create.js
+++ b/src/api/endpoints/posts/create.js
@@ -174,6 +174,11 @@ module.exports = (params, user, app) =>
return rej('poll choices must be an array');
}
+ // 選択肢が空の配列でエラー
+ if (poll.choices.length == 0) {
+ return rej('poll choices is required');
+ }
+
// Validate each choices
const shouldReject = poll.choices.some(choice => {
if (typeof choice !== 'string') return true;