From: Chocobozzz Date: Wed, 23 Nov 2022 14:47:30 +0000 (+0100) Subject: Add missing uuids search query doc X-Git-Tag: v5.0.0-rc.1~101 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=3299c9e124a2c1879ec24dc5635d3fb7014b7245;p=github%2FChocobozzz%2FPeerTube.git Add missing uuids search query doc --- diff --git a/server/tests/api/search/search-activitypub-video-channels.ts b/server/tests/api/search/search-activitypub-video-channels.ts index 06a206d21..8173c8b60 100644 --- a/server/tests/api/search/search-activitypub-video-channels.ts +++ b/server/tests/api/search/search-activitypub-video-channels.ts @@ -185,7 +185,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should update video channel of server 2, and refresh it on server 1', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].channels.update({ token: userServer2Token, @@ -211,7 +211,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should update and add a video on server 2, and update it on server 1 after a search', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].videos.update({ token: userServer2Token, id: videoServer2UUID, attributes: { name: 'video 1 updated' } }) await servers[1].videos.upload({ token: userServer2Token, attributes: { name: 'video 2 server 2', channelId: channelIdServer2 } }) @@ -235,7 +235,7 @@ describe('Test ActivityPub video channels search', function () { }) it('Should delete video channel of server 2, and delete it on server 1', async function () { - this.timeout(60000) + this.timeout(120000) await servers[1].channels.delete({ token: userServer2Token, channelName: 'channel1_server2' }) diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 69a6eff72..2062f2e3a 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml @@ -4477,6 +4477,7 @@ paths: - $ref: '#/components/parameters/isLocal' - $ref: '#/components/parameters/include' - $ref: '#/components/parameters/privacyOneOf' + - $ref: '#/components/parameters/uuids' - $ref: '#/components/parameters/hasHLSFiles' - $ref: '#/components/parameters/hasWebtorrentFiles' - $ref: '#/components/parameters/skipCount' @@ -5606,6 +5607,14 @@ components: schema: $ref: '#/components/schemas/VideoPrivacySet' description: '**PeerTube >= 4.0** Display only videos in this specific privacy/privacies' + uuids: + name: uuids + in: query + required: false + schema: + items: + type: string + description: 'Find videos with specific UUIDs' include: name: include in: query