Revision 13392
Added by Jean-Philippe Lang almost 11 years ago
routes.rb | ||
---|---|---|
336 | 336 |
|
337 | 337 |
match 'sys/projects', :to => 'sys#projects', :via => :get |
338 | 338 |
match 'sys/projects/:id/repository', :to => 'sys#create_project_repository', :via => :post |
339 |
match 'sys/fetch_changesets', :to => 'sys#fetch_changesets', :via => :get
|
|
339 |
match 'sys/fetch_changesets', :to => 'sys#fetch_changesets', :via => [:get, :post]
|
|
340 | 340 |
|
341 | 341 |
match 'uploads', :to => 'attachments#upload', :via => :post |
342 | 342 |
|
Also available in: Unified diff
Makes sys#fetch_changesets accept POST requests (#17077).