[#1873] Fixes missing :offset pagination param support. Added pagination support for hashtags search.

This commit is contained in:
Ivan Tashkinov 2020-06-19 16:14:06 +03:00
commit 5237a2df9f
5 changed files with 48 additions and 13 deletions

View file

@ -39,6 +39,12 @@ defmodule Pleroma.Web.ApiSpec.Helpers do
:string,
"Return the newest items newer than this ID"
),
Operation.parameter(
:offset,
:query,
%Schema{type: :integer, default: 0},
"Return items past this number of items"
),
Operation.parameter(
:limit,
:query,