Skip to content

Commit

Permalink
Merge pull request #143 from GiganticMinecraft/fix/listFormLimitOffse…
Browse files Browse the repository at this point in the history
…tQuery

fix: フォームの一覧を取得するエンドポイントのoffset、limitの指定を任意にする
  • Loading branch information
rito528 authored Jun 23, 2024
2 parents f80c60e + 16342f4 commit ae99c3a
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 ae99c3a

Please sign in to comment.