mirror of https://git.tuxpa.in/a/code-server.git
Allow plugins to register at the root
Unfortunately we have existing plugins with routes there which we cannot move.
This commit is contained in:
parent
619934dc29
commit
0abbc9789e
|
@ -251,7 +251,7 @@ export class PluginAPI {
|
||||||
if (!p.routerPath) {
|
if (!p.routerPath) {
|
||||||
throw new Error("plugin missing router path")
|
throw new Error("plugin missing router path")
|
||||||
}
|
}
|
||||||
if (!p.routerPath.startsWith("/") || p.routerPath.length < 2) {
|
if (!p.routerPath.startsWith("/")) {
|
||||||
throw new Error(`plugin router path ${q(p.routerPath)}: invalid`)
|
throw new Error(`plugin router path ${q(p.routerPath)}: invalid`)
|
||||||
}
|
}
|
||||||
if (!p.homepageURL) {
|
if (!p.homepageURL) {
|
||||||
|
|
Loading…
Reference in New Issue