summaryrefslogtreecommitdiff
path: root/app/serializers/issue_sidebar_entity.rb
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