11 lines
155 B
Ruby
11 lines
155 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class ExternalIssue < Grape::Entity
|
||
|
expose :title
|
||
|
expose :id
|
||
|
end
|
||
|
end
|
||
|
end
|