dc3d902234
Allow a plugin developer to get back constants values, and reset constants deletions or additions.
13 lines
430 B
TypeScript
13 lines
430 B
TypeScript
import { VideoPrivacy } from '../../../videos/video-privacy.enum'
|
|
import { ConstantManager } from '@shared/models/plugins/server/plugin-constant-manager.model'
|
|
|
|
export interface PluginVideoPrivacyManager extends ConstantManager<VideoPrivacy> {
|
|
/**
|
|
* PUBLIC = 1,
|
|
* UNLISTED = 2,
|
|
* PRIVATE = 3
|
|
* INTERNAL = 4
|
|
* @deprecated use `deleteConstant` instead
|
|
*/
|
|
deletePrivacy: (privacyKey: VideoPrivacy) => boolean
|
|
}
|