diff options
author | Azul <azul@riseup.net> | 2016-05-18 20:21:04 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-18 20:21:04 +0200 |
commit | 83f59164fc069f2593cf6babbc18638d9a68c9a3 (patch) | |
tree | b357b100bfd40eb098040c4214776a5fb9bbff9b /app/controllers | |
parent | e05a1b0f5ae40a2aa17976b3009cd563b8e4660a (diff) |
features for API version 2 - keep old ones
Now we test both api versions. We want this for backwards compatibility.
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/configs_controller.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/api/configs_controller.rb b/app/controllers/api/configs_controller.rb index 55ceb4f..0f9b8a6 100644 --- a/app/controllers/api/configs_controller.rb +++ b/app/controllers/api/configs_controller.rb @@ -21,7 +21,11 @@ class Api::ConfigsController < ApiController } def service_paths - Hash[SERVICE_IDS.map{|k,v| [k,"/1/configs/#{v}.json"] } ] + Hash[SERVICE_IDS.map{|k,v| [k,"/#{api_version}/configs/#{v}.json"] } ] + end + + def api_version + ["1", "2"].include?(params[:version]) ? params[:version] : "2" end def sanitize_id |