Add miniature quick actions to add video to Watch later playlist

This commit is contained in:
Rigel Kent
2020-01-02 13:07:18 +01:00
parent cca1e13b96
commit 29128b2f5c
13 changed files with 184 additions and 17 deletions

View File

@@ -1,5 +1,6 @@
import { Account } from '../actors'
import { VideoChannel } from '../videos/channel/video-channel.model'
import { VideoPlaylist } from '../videos/playlist/video-playlist.model'
import { UserRole } from './user-role'
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
import { UserNotificationSetting } from './user-notification-setting.model'
@@ -45,3 +46,7 @@ export interface User {
createdAt: Date
}
export interface MyUser extends User {
specialPlaylists: Partial<VideoPlaylist>[]
}