diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-08-05 00:50:07 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-11 09:03:39 +0200 |
commit | 02c01341f4dae30ec6b81fcb644952393d73c4a8 (patch) | |
tree | aca3f2b118bb123457fd38724be68fe877504c75 /shared/models | |
parent | 766d13b4470de02d3d7bec94188260b89a356399 (diff) | |
download | PeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.tar.gz PeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.tar.zst PeerTube-02c01341f4dae30ec6b81fcb644952393d73c4a8.zip |
add ng-select for templatable select options
- create select-tags component to replace ngx-chips
- create select-options to factorize option selection in forms
- create select-channel to simplify channel selection
- refactor tags validation
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/videos/video-constant.model.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/models/videos/video-constant.model.ts b/shared/models/videos/video-constant.model.ts index 342a7c0cf..353a29535 100644 --- a/shared/models/videos/video-constant.model.ts +++ b/shared/models/videos/video-constant.model.ts | |||
@@ -1,4 +1,5 @@ | |||
1 | export interface VideoConstant<T> { | 1 | export interface VideoConstant<T> { |
2 | id: T | 2 | id: T |
3 | label: string | 3 | label: string |
4 | description?: string | ||
4 | } | 5 | } |