b9e52612fe
New API endpoint for merge request count Updates all open tabs at the same time with one call Restructured API response API response changed to 401 if no current_user Added API + JS specs Fix for Static Check Updated Count on Open/Close, Assign/Unassign of MR's Checking if MR Count is refreshed Added # frozen_string_literal: true to spec Added Changelog
18 lines
370 B
Ruby
18 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
class UserCounts < Grape::API
|
|
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
|