summaryrefslogtreecommitdiff
path: root/lib/opentox.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/opentox.rb')
-rw-r--r--lib/opentox.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/opentox.rb b/lib/opentox.rb
index c14d352..6afcd35 100644
--- a/lib/opentox.rb
+++ b/lib/opentox.rb
@@ -197,9 +197,9 @@ module OpenTox
end
# generic route to swagger API file
- get "/#{SERVICE}/api/?" do
+ get "/#{SERVICE}/api/#{SERVICE}.json" do
response['Content-Type'] = "application/json"
- api_file = File.join('api', 'swagger.json')
+ api_file = File.join('api', '#{SERVICE}.json')
bad_request_error "API Documentation in Swagger JSON is not implemented.", uri("/#{SERVICE}/api") unless File.exists?(api_file)
File.read(api_file)
end