Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_counts.rb « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90127ecbc73690d7477bbed85bcda6230f72ed67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module API
  class UserCounts < Grape::API::Instance
    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