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

Improve channel card custom markup

This commit is contained in:
Chocobozzz 2021-06-09 10:31:27 +02:00
parent 9105634f16
commit 61cbafc1f8
No known key found for this signature in database
GPG key ID: 583A612D890159BE
8 changed files with 166 additions and 23 deletions

View file

@ -18,6 +18,9 @@ export type PlaylistMiniatureMarkupData = {
export type ChannelMiniatureMarkupData = {
// Channel name (username)
name: string
displayLatestVideo?: string // boolean
displayDescription?: string // boolean
}
export type VideosListMarkupData = {
@ -43,4 +46,5 @@ export type ContainerMarkupData = {
width?: string
title?: string
description?: string
layout?: 'row' | 'column'
}