summaryrefslogtreecommitdiff
path: root/lib/api.rb
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2018-05-07 12:40:45 +0200
committergebele <gebele@in-silico.ch>2018-05-07 12:40:45 +0200
commit9f3dbafd5fd8d80eae529354efcef94aec8f7d48 (patch)
tree192e5ac3fac868f7fe5ca5c7a21167883d949ebf /lib/api.rb
parent3ecd85f1fd7c397d8544be61ba9c3dcc3ff301fe (diff)
parent909b34b31d71671b5e5a660cb78b5f1bc1a88b8b (diff)
Merge branch 'development' of https://github.com/opentox/lazar-rest into developmentdevelopment
Diffstat (limited to 'lib/api.rb')
-rw-r--r--lib/api.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api.rb b/lib/api.rb
index 98623dc..28e33df 100644
--- a/lib/api.rb
+++ b/lib/api.rb
@@ -2,8 +2,8 @@
get "/api/api.json" do
response['Content-Type'] = "application/json"
api_file = File.join("api", "api.json")
- bad_request_error "API Documentation in Swagger JSON is not implemented.", uri("/#{SERVICE}/api") unless File.exists?(api_file)
+ bad_request_error "API Documentation in Swagger JSON is not implemented." unless File.exists?(api_file)
api_hash = JSON.parse(File.read(api_file))
api_hash["host"] = request.env['HTTP_HOST']
return api_hash.to_json
-end \ No newline at end of file
+end