2020-02-13 16:08:59 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Deployment < Grape::Entity
|
|
|
|
expose :id, :iid, :ref, :sha, :created_at, :updated_at
|
|
|
|
expose :user, using: Entities::UserBasic
|
|
|
|
expose :environment, using: Entities::EnvironmentBasic
|
2020-08-13 14:10:36 -04:00
|
|
|
expose :deployable, using: Entities::Ci::Job
|
2020-02-13 16:08:59 -05:00
|
|
|
expose :status
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|