From e15d551050a29815009ff4392b16a0f516dbbf71 Mon Sep 17 00:00:00 2001 From: Juri Leino Date: Sun, 22 Sep 2024 18:59:05 -0400 Subject: [PATCH] fix: cookie module must be exported --- content/auth.xql | 2 +- expath-pkg.xml.tmpl | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/content/auth.xql b/content/auth.xql index e4a9001..04deb26 100644 --- a/content/auth.xql +++ b/content/auth.xql @@ -25,7 +25,7 @@ import module namespace session = "http://exist-db.org/xquery/session"; import module namespace router="http://e-editiones.org/roaster/router"; import module namespace rutil="http://e-editiones.org/roaster/util"; import module namespace errors="http://e-editiones.org/roaster/errors"; -import module namespace cookie="http://e-editiones.org/roaster/cookie" at "cookie.xqm"; +import module namespace cookie="http://e-editiones.org/roaster/cookie"; (: API Request Authentication and Authorisation :) diff --git a/expath-pkg.xml.tmpl b/expath-pkg.xml.tmpl index 2e6b418..4c7616c 100644 --- a/expath-pkg.xml.tmpl +++ b/expath-pkg.xml.tmpl @@ -30,4 +30,8 @@ http://e-editiones.org/roaster/body body.xqm + + http://e-editiones.org/roaster/cookie + cookie.xqm +