From c0eb20d31df5df64b13b9f7773c2cb71cab2a2d9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sat, 11 Feb 2023 00:59:08 +0100 Subject: [PATCH] :bug: Add missing require on rpc ns --- backend/src/app/rpc.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/app/rpc.clj b/backend/src/app/rpc.clj index 5fe9d372e..21ffd721d 100644 --- a/backend/src/app/rpc.clj +++ b/backend/src/app/rpc.clj @@ -7,6 +7,7 @@ (ns app.rpc (:require [app.auth.ldap :as-alias ldap] + [app.common.data :as d] [app.common.exceptions :as ex] [app.common.logging :as l] [app.common.spec :as us]