diff options
author | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-10 08:57:56 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-17 20:08:16 +0200 |
commit | 34558315d9deb305b062b825a9a1821ee17352cc (patch) | |
tree | 8695f30cce318af10649689d81b79e05bc261554 /lib/api/api.rb | |
parent | 3f88221c2dcb1c42cc2f5a765d2586f1755128c3 (diff) | |
download | gitlab-ce-34558315d9deb305b062b825a9a1821ee17352cc.tar.gz |
Sort API endpoints and implement feedback
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index 7944c80cf7a..ef23c4d5de0 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -26,40 +26,41 @@ module API # Ensure the namespace is right, otherwise we might load Grape::API::Helpers helpers ::API::Helpers - mount ::API::Groups + # Sort these alphabetically + mount ::API::AwardEmoji + mount ::API::Branches + mount ::API::Builds + mount ::API::CommitStatuses + mount ::API::Commits + mount ::API::DeployKeys + mount ::API::Files + mount ::API::Gitignores mount ::API::GroupMembers - mount ::API::Users - mount ::API::Projects - mount ::API::Repositories + mount ::API::Groups + mount ::API::Internal mount ::API::Issues - mount ::API::Milestones - mount ::API::Session + mount ::API::Keys + mount ::API::Labels + mount ::API::Licenses mount ::API::MergeRequests + mount ::API::Milestones + mount ::API::Namespaces mount ::API::Notes - mount ::API::AwardEmoji - mount ::API::Internal - mount ::API::SystemHooks - mount ::API::ProjectSnippets - mount ::API::ProjectMembers - mount ::API::DeployKeys mount ::API::ProjectHooks + mount ::API::ProjectMembers + mount ::API::ProjectSnippets + mount ::API::Projects + mount ::API::Repositories + mount ::API::Runners mount ::API::Services - mount ::API::Files - mount ::API::Commits - mount ::API::CommitStatuses - mount ::API::Namespaces - mount ::API::Branches - mount ::API::Labels + mount ::API::Session mount ::API::Settings - mount ::API::Keys + mount ::API::SidekiqMetrics + mount ::API::Subscriptions + mount ::API::SystemHooks mount ::API::Tags mount ::API::Triggers - mount ::API::Builds + mount ::API::Users mount ::API::Variables - mount ::API::Runners - mount ::API::Licenses - mount ::API::Subscriptions - mount ::API::Gitignores - mount ::API::SidekiqMetrics end end |