debian-mirror-gitlab/lib/api/user_counts.rb

21 lines
405 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
module API
2021-01-03 14:25:43 +05:30
class UserCounts < ::API::Base
2021-01-29 00:20:46 +05:30
feature_category :navigation
2019-09-30 21:07:59 +05:30
resource :user_counts do
desc 'Return the user specific counts' do
detail 'Open MR Count'
end
get do
unauthorized! unless current_user
{
merge_requests: current_user.assigned_open_merge_requests_count
}
end
end
end
end