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

issue_sidebar_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b73ead5cd741c11846baf4afc6ca1fd143310b6 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class IssueSidebarEntity < IssuableSidebarEntity
  with_options if: { include_extras: true } do
    expose :assignees, using: API::Entities::UserBasic
  end
end