From d61a1642f2cec2f2360ccb931c697647bb7f8329 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 23 Jan 2026 21:18:24 -0700 Subject: [PATCH] Add the filePath method as a handlebars helper --- module/handlebarsHelpers/_index.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/handlebarsHelpers/_index.mjs b/module/handlebarsHelpers/_index.mjs index 167bf65..b7251ef 100644 --- a/module/handlebarsHelpers/_index.mjs +++ b/module/handlebarsHelpers/_index.mjs @@ -1,6 +1,8 @@ +import { filePath } from "../consts.mjs"; import { options } from "./options.mjs"; export default { // MARK: Complex "tb-options": options, + "tb-filePath": filePath, };