Add plugin types

This commit is contained in:
Bill Thornton
2023-03-08 11:03:48 -05:00
parent ecb84ff351
commit 64ecc3eae7
18 changed files with 51 additions and 20 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
import ServerConnections from '../../components/ServerConnections';
import { PluginType } from '../../types/plugin.ts';
export default class PhotoPlayer {
constructor() {
this.name = 'Photo Player';
this.type = 'mediaplayer';
this.type = PluginType.MediaPlayer;
this.id = 'photoplayer';
this.priority = 1;
}