Skip to content

Commit

Permalink
fix: フォームの一覧を取得するエンドポイントのoffset、limitの指定を任意にする
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jun 23, 2024
1 parent f80c60e commit 16342f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions endpoints/forms.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@ namespace Forms {
@summary("フォームの一覧取得")
op list(
@doc("取得件数の下限値 例えば、offsetを1とすると2件目からのデータが取得できます。")
@minValue(0)
@query
offset: uint32,
offset?: uint32,

@doc("取得件数の上限値 例えば、limitを10とすると10番目までのデータが取得できます。")
@minValue(1)
@query
limit: uint32,
limit?: uint32,
): {
@statusCode statusCode: 200;
@body body: MinimalForm[];
Expand Down

0 comments on commit 16342f4

Please sign in to comment.