Feature #17077
fetch_changesets should use POST method too
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | SCM | |||
Target version: | 2.6.0 | |||
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
Associated revisions
Makes sys#fetch_changesets accept POST requests (#17077).
History
#1
Updated by Toshi MARUYAMA about 8 years ago
- Category set to SCM
- Target version set to 2.6.0
#2
Updated by Toshi MARUYAMA about 8 years ago
- Related to Feature #17169: Allow POST in sys/fetch_changesets added
#3
Updated by Jean-Philippe Lang almost 8 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Fix committed in r13392.
#4
Updated by Toshi MARUYAMA over 7 years ago
- Related to deleted (Feature #17169: Allow POST in sys/fetch_changesets)
#5
Updated by Toshi MARUYAMA over 7 years ago
- Duplicated by Feature #17169: Allow POST in sys/fetch_changesets added