Update channel updatedAt when uploading a video

This commit is contained in:
Chocobozzz
2021-05-07 17:14:39 +02:00
parent 1e0741d165
commit e024fd6a74
12 changed files with 95 additions and 38 deletions

View File

@@ -5,6 +5,8 @@ export interface Account extends Actor {
displayName: string
description: string
updatedAt: Date | string
userId?: number
}

View File

@@ -8,6 +8,5 @@ export interface Actor {
followingCount: number
followersCount: number
createdAt: Date | string
updatedAt: Date | string
avatar?: ActorImage
}

View File

@@ -11,6 +11,9 @@ export interface VideoChannel extends Actor {
description: string
support: string
isLocal: boolean
updatedAt: Date | string
ownerAccount?: Account
videosCount?: number