1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00

Allow component plugins in cloud

This commit is contained in:
Andrew Kingston 2022-09-14 10:14:17 +01:00
parent a0f43107be
commit 9511fb72c7

View file

@ -197,10 +197,12 @@ export async function storePlugin(
}
export async function processPlugin(plugin: FileType, source?: string) {
if (!env.SELF_HOSTED) {
throw new Error("Plugins not supported outside of self-host.")
const { metadata, directory } = await fileUpload(plugin)
// Only allow components in cloud
if (!env.SELF_HOSTED && metadata?.schema?.type !== PluginType.COMPONENT) {
throw new Error("Only component plugins are supported outside of self-host")
}
const { metadata, directory } = await fileUpload(plugin)
return await storePlugin(metadata, directory, source)
}