mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
Playlist server API
This commit is contained in:
parent
b427febb4d
commit
418d092afa
63 changed files with 2758 additions and 226 deletions
23
shared/models/activitypub/objects/playlist-object.ts
Normal file
23
shared/models/activitypub/objects/playlist-object.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ActivityIconObject } from './common-objects'
|
||||
|
||||
export interface PlaylistObject {
|
||||
id: string
|
||||
type: 'Playlist'
|
||||
|
||||
name: string
|
||||
content: string
|
||||
uuid: string
|
||||
|
||||
totalItems: number
|
||||
attributedTo: string[]
|
||||
|
||||
icon: ActivityIconObject
|
||||
|
||||
orderedItems?: string[]
|
||||
|
||||
partOf?: string
|
||||
next?: string
|
||||
first?: string
|
||||
|
||||
to?: string[]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue