diff --git a/backend/src/plugins/Tags/TagsPlugin.ts b/backend/src/plugins/Tags/TagsPlugin.ts index 49a5a284..3ee41bf9 100644 --- a/backend/src/plugins/Tags/TagsPlugin.ts +++ b/backend/src/plugins/Tags/TagsPlugin.ts @@ -18,6 +18,7 @@ import { convertDelayStringToMS } from "../../utils"; import { TimeAndDatePlugin } from "../TimeAndDate/TimeAndDatePlugin"; import { mapToPublicFn } from "../../pluginUtils"; import { renderTagBody } from "./util/renderTagBody"; +import { findTagByName } from "./util/findTagByName"; const defaultOptions: PluginOptions = { config: { @@ -67,6 +68,7 @@ export const TagsPlugin = zeppelinPlugin()("tags", { public: { renderTagBody: mapToPublicFn(renderTagBody), + findTagByName: mapToPublicFn(findTagByName), }, onLoad(pluginData) {