Skip to content

Commit

Permalink
Merge pull request #150 from GiganticMinecraft/fix/form-update
Browse files Browse the repository at this point in the history
fix: フォームの値を更新するエンドポイントで更新する値を json で受け取るように定義し直す
  • Loading branch information
rito528 authored Jul 14, 2024
2 parents e45788c + 32b4ed1 commit 8e81c3d
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions src/endpoints/forms.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,20 @@ namespace Forms {
@summary("フォームの値を更新する")
op update(
@path formId: uint32,
@query title?: string,
@query description?: string,
@query start_at?: utcDateTime,
@query end_at?: utcDateTime,
@query webhook_url?: url,

/**
* 各回答に対して自動でつけられるタイトルを設定します。
* `$[question_id]`と指定することで、`question_id`の質問の回答をタイトルに含めることができます。
*/
@query default_answer_title?: string,

@query visibility?: Visibility,
@body body: {
title?: string;
description?: string;
response_period?: ResponsePeriod;
webhook_url?: url;

/**
* 各回答に対して自動でつけられるタイトルを設定します。
* `$[question_id]`と指定することで、`question_id`の質問の回答をタイトルに含めることができます。
*/
default_title?: string;

visibility?: Visibility;
},
): {
@statusCode statusCode: 200;
@body body: Form;
Expand Down

0 comments on commit 8e81c3d

Please sign in to comment.