mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add ServerConnections to pluginManager exported functions.
This commit is contained in:
parent
c16c6269a2
commit
66dcbd59ca
1 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@ import * as inputManager from '../scripts/inputManager';
|
||||||
import toast from '../components/toast/toast';
|
import toast from '../components/toast/toast';
|
||||||
import confirm from '../components/confirm/confirm';
|
import confirm from '../components/confirm/confirm';
|
||||||
import * as dashboard from '../utils/dashboard';
|
import * as dashboard from '../utils/dashboard';
|
||||||
|
import ServerConnections from '../components/ServerConnections';
|
||||||
|
|
||||||
// TODO: replace with each plugin version
|
// TODO: replace with each plugin version
|
||||||
const cacheParam = new Date().getTime();
|
const cacheParam = new Date().getTime();
|
||||||
|
@ -88,7 +89,8 @@ class PluginManager {
|
||||||
inputManager,
|
inputManager,
|
||||||
toast,
|
toast,
|
||||||
confirm,
|
confirm,
|
||||||
dashboard
|
dashboard,
|
||||||
|
ServerConnections
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
console.debug(`Loading plugin (via dynamic import): ${pluginSpec}`);
|
console.debug(`Loading plugin (via dynamic import): ${pluginSpec}`);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue