]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add missing uuids search query doc
authorChocobozzz <me@florianbigard.com>
Wed, 23 Nov 2022 14:47:30 +0000 (15:47 +0100)
committerChocobozzz <me@florianbigard.com>
Wed, 23 Nov 2022 14:50:42 +0000 (15:50 +0100)
server/tests/api/search/search-activitypub-video-channels.ts
support/doc/api/openapi.yaml

index 06a206d21bb3e7db9a9cd585dd9860c54e510376..8173c8b608086cc4a056d1cabb1c5cb1b0eff2d3 100644 (file)
@@ -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' })
 
index 69a6eff7266963e80dfbc0d5c4129184cacc768c..2062f2e3a121a4be67545bf2baff5cc89dee737f 100644 (file)
@@ -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