2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
class BuildSerializer < BaseSerializer
|
2017-09-10 17:25:29 +05:30
|
|
|
entity JobEntity
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
def represent_status(resource)
|
|
|
|
data = represent(resource, { only: [:status] })
|
|
|
|
data.fetch(:status, {})
|
|
|
|
end
|
|
|
|
end
|