Actions
Feature #17077
closedfetch_changesets should use POST method too
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
We use fetch_changesets to link Redmine issues with our git commits within another application.
Unfortunately, it only uses the POST method - so we had to add it to the redmine code :
- match 'sys/fetch_changesets', :to => 'sys#fetch_changesets', :via => :get
+ match 'sys/fetch_changesets', :to => 'sys#fetch_changesets', :via => [:get, :post]
Could you please add it to a future Redmine version ?
Thanks !
Related issues
Updated by Toshi MARUYAMA over 10 years ago
- Category set to SCM
- Target version set to 2.6.0
Updated by Toshi MARUYAMA over 10 years ago
- Related to Feature #17169: Allow POST in sys/fetch_changesets added
Updated by Jean-Philippe Lang about 10 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Fix committed in r13392.
Updated by Toshi MARUYAMA about 10 years ago
- Related to deleted (Feature #17169: Allow POST in sys/fetch_changesets)
Updated by Toshi MARUYAMA about 10 years ago
- Has duplicate Feature #17169: Allow POST in sys/fetch_changesets added
Actions