1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Plugins can update video constants

Categories, licences and languages
This commit is contained in:
Chocobozzz 2019-07-26 13:13:39 +02:00
parent 16d5469629
commit ee286591a5
No known key found for this signature in database
GPG key ID: 583A612D890159BE
9 changed files with 342 additions and 1 deletions

View file

@ -0,0 +1,5 @@
export interface PluginVideoLicenceManager {
addLicence: (licenceKey: number, licenceLabel: string) => boolean
deleteLicence: (licenceKey: number) => boolean
}