From 0192298d09e4ae525b196f8100733a1913065a97 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 20 Nov 2016 21:19:21 +0100 Subject: [PATCH] Remove unused type attr from import entry spec. --- backend/src/uxbox/cli/collimp.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/uxbox/cli/collimp.clj b/backend/src/uxbox/cli/collimp.clj index e19d02705e..ef179074d1 100644 --- a/backend/src/uxbox/cli/collimp.clj +++ b/backend/src/uxbox/cli/collimp.clj @@ -31,12 +31,11 @@ (def ^:const +imates-uuid-ns+ #uuid "3642a582-565f-4070-beba-af797ab27a6e") (s/def ::name string?) -(s/def ::type keyword?) (s/def ::path string?) (s/def ::regex us/regex?) (s/def ::import-entry - (s/keys :req-un [::name ::type ::path ::regex])) + (s/keys :req-un [::name ::path ::regex])) ;; --- CLI Helpers