From fcdf33b134bd2cac283e8c6b6d34d4560aa5f559 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 8 Aug 2023 10:37:17 +0200 Subject: [PATCH] :bug: Fix backend api doc generation for auth required endpoints --- backend/src/app/rpc/doc.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/rpc/doc.clj b/backend/src/app/rpc/doc.clj index f543ac19b..f491fa9b1 100644 --- a/backend/src/app/rpc/doc.clj +++ b/backend/src/app/rpc/doc.clj @@ -54,7 +54,7 @@ {:name (::sv/name mdata) :module (or (some-> (::module mdata) d/name) (-> (:ns mdata) (str/split ".") last)) - :auth (:auth mdata true) + :auth (::rpc/auth mdata true) :webhook (::webhooks/event? mdata false) :docs (::sv/docstring mdata) :deprecated (::deprecated mdata)