summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/api.rb4
-rw-r--r--lib/swagger.rb4
2 files changed, 4 insertions, 4 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
diff --git a/lib/swagger.rb b/lib/swagger.rb
index f6b42b2..9fa14f7 100644
--- a/lib/swagger.rb
+++ b/lib/swagger.rb
@@ -2,7 +2,7 @@ set :public_folder, File.join("/home/ist/swagger-ui/dist/")
# route to swagger API file
get "/" do
response['Content-Type'] = "text/html"
- index_file = File.join("/home/ist/swagger-ui/dist/index.html")
- bad_request_error "API Documentation in Swagger JSON is not implemented.", uri("/#{SERVICE}/api") unless File.exists?(index_file)
+ index_file = File.join(ENV['HOME'],"swagger-ui/dist/index.html")
+ bad_request_error "API Documentation in Swagger JSON is not implemented." unless File.exists?(index_file)
File.read(index_file)
end