diff options
Diffstat (limited to 'server/controllers/api')
-rw-r--r-- | server/controllers/api/videos/channel.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/videos/channel.ts b/server/controllers/api/videos/channel.ts index 656bc3129..8f3df2550 100644 --- a/server/controllers/api/videos/channel.ts +++ b/server/controllers/api/videos/channel.ts | |||
@@ -10,7 +10,7 @@ import { | |||
10 | paginationValidator, | 10 | paginationValidator, |
11 | setPagination, | 11 | setPagination, |
12 | setVideoChannelsSort, | 12 | setVideoChannelsSort, |
13 | videoChannelGetValidator, | 13 | videoChannelsGetValidator, |
14 | videoChannelsAddValidator, | 14 | videoChannelsAddValidator, |
15 | videoChannelsRemoveValidator, | 15 | videoChannelsRemoveValidator, |
16 | videoChannelsSortValidator, | 16 | videoChannelsSortValidator, |
@@ -53,7 +53,7 @@ videoChannelRouter.delete('/channels/:id', | |||
53 | ) | 53 | ) |
54 | 54 | ||
55 | videoChannelRouter.get('/channels/:id', | 55 | videoChannelRouter.get('/channels/:id', |
56 | videoChannelGetValidator, | 56 | videoChannelsGetValidator, |
57 | asyncMiddleware(getVideoChannel) | 57 | asyncMiddleware(getVideoChannel) |
58 | ) | 58 | ) |
59 | 59 | ||