Add playlist channel validator when playlist is public
[oweals/peertube.git] / shared / utils / miscs / stubs.ts
1 function buildRequestStub (): any {
2   return { }
3 }
4
5 function buildResponseStub (): any {
6   return {
7     locals: {}
8   }
9 }
10
11 export {
12   buildResponseStub,
13   buildRequestStub
14 }