]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/plugin-video-category-manager.model.ts
Plugins can update video constants
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-video-category-manager.model.ts
1 export interface PluginVideoCategoryManager {
2 addCategory: (categoryKey: number, categoryLabel: string) => boolean
3
4 deleteCategory: (categoryKey: number) => boolean
5 }