8 lines
150 B
Ruby
8 lines
150 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Evidences
|
||
|
class EvidenceEntity < Grape::Entity
|
||
|
expose :release, using: Evidences::ReleaseEntity
|
||
|
end
|
||
|
end
|