Make swagger-ui available only for dev profile

This commit is contained in:
Teemu Patja 2017-03-04 13:01:32 +02:00
parent 1107ed71e7
commit f8e7677c9e
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
1 changed files with 7 additions and 5 deletions

View File

@ -13,6 +13,7 @@
[commiteth.github.core :as github]
[clojure.tools.logging :as log]
[commiteth.eth.core :as eth]
[commiteth.config :refer [env]]
[crypto.random :as random]
[clojure.set :refer [rename-keys]]
[clojure.string :as str]))
@ -141,11 +142,12 @@
(defapi service-routes
(when (:dev env)
{:swagger {:ui "/swagger-ui"
:spec "/swagger.json"
:data {:info {:version "0.1"
:title "commitETH API"
:description "commitETH API"}}}}
:description "commitETH API"}}}})
(context "/api" []
(GET "/top-hunters" []