diff options
author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-01-25 19:35:27 -0200 |
---|---|---|
committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-02-06 10:12:20 -0200 |
commit | c2d64d67027ca4170deb24c8b5868d127bba157c (patch) | |
tree | b499e597bf6aee9f92313ee04e00a2d8f3778ce9 /lib/api/api.rb | |
parent | 999edc5c1783aa205fdac4ba159e51851acdb446 (diff) | |
download | gitlab-ce-c2d64d67027ca4170deb24c8b5868d127bba157c.tar.gz |
Remove deprecated MR and Issue endpoints and preserve V3 namespace9-0-api-changes
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index 090109d5e6f..1950d2791ab 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -5,6 +5,8 @@ module API version %w(v3 v4), using: :path version 'v3', using: :path do + mount ::API::V3::Issues + mount ::API::V3::MergeRequests mount ::API::V3::Projects end |