diff --git a/backend/src/uxbox/util/http.clj b/backend/src/uxbox/util/http.clj index 09f07adb0..735055354 100644 --- a/backend/src/uxbox/util/http.clj +++ b/backend/src/uxbox/util/http.clj @@ -20,5 +20,7 @@ (http/get url nil opts'))) (defn send! - [req] - (http/send req {:client @default-client :as :string})) + ([req] + (http/send req {:client @default-client :as :string})) + ([req opts] + (http/send req (merge {:client @default-client :as :string} opts))))