]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/custom-markup/custom-markup-data.model.ts
Add notification plugin hook
[github/Chocobozzz/PeerTube.git] / shared / models / custom-markup / custom-markup-data.model.ts
index c5649448524830e614d4388776aaf0f7fac30ebe..3e396052a68e7f66fc27dcb5461b6f5f21c0e89e 100644 (file)
@@ -30,9 +30,14 @@ export type VideosListMarkupData = {
   sort?: string
   count?: string // number
 
-  categoryOneOf?: string // coma separated values
+  categoryOneOf?: string // coma separated values, number[]
   languageOneOf?: string // coma separated values
 
+  channelHandle?: string
+  accountHandle?: string
+
+  isLive?: string // number
+
   onlyLocal?: string // boolean
 }
 
@@ -48,4 +53,6 @@ export type ContainerMarkupData = {
   title?: string
   description?: string
   layout?: 'row' | 'column'
+
+  justifyContent?: 'space-between' | 'normal' // default to 'space-between'
 }