diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-06-27 14:15:09 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-06-27 14:15:09 +0100 |
commit | af24b1e306dab3ebe10d97f7777abedd011321da (patch) | |
tree | b440b839bf1e7465ab154cdc19ee9366b9f98198 /config/routes.rb | |
parent | 6c4c822ef7a4491bf821326af779e5be9118c0a1 (diff) | |
parent | 5b80d1b9a0933b1e20de013d1aa8b8522f2ad066 (diff) |
Merge branch 'release/0.6.1'0.6.1
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 814deb760..13ab6669e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -240,6 +240,14 @@ ActionController::Routing::Routes.draw do |map| rule.admin_rule_update '/admin/censor/update/:id', :action => 'update' rule.admin_rule_destroy '/admin/censor/destroy/:censor_rule_id', :action => 'destroy' end + + map.with_options :controller => 'api' do |api| + api.api_create_request '/api/v2/request.json', :action => 'create_request', :conditions => { :method => :post } + + api.api_show_request '/api/v2/request/:id.json', :action => 'show_request', :conditions => { :method => :get } + api.api_add_correspondence '/api/v2/request/:id.json', :action => 'add_correspondence', :conditions => { :method => :post } + end + map.filter('conditionallyprependlocale') # Allow downloading Web Service WSDL as a file with an extension |