1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Server shares user videos

This commit is contained in:
Chocobozzz 2017-11-16 15:22:39 +01:00
parent efc32059d9
commit 20494f1221
No known key found for this signature in database
GPG key ID: 583A612D890159BE
16 changed files with 215 additions and 111 deletions

View file

@ -10,7 +10,7 @@ import {
paginationValidator,
setPagination,
setVideoChannelsSort,
videoChannelGetValidator,
videoChannelsGetValidator,
videoChannelsAddValidator,
videoChannelsRemoveValidator,
videoChannelsSortValidator,
@ -53,7 +53,7 @@ videoChannelRouter.delete('/channels/:id',
)
videoChannelRouter.get('/channels/:id',
videoChannelGetValidator,
videoChannelsGetValidator,
asyncMiddleware(getVideoChannel)
)