Commit 30b0dcb7 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch '56130-deployment-date' into 'master'

Expose finished_at for the Deployment entity

See merge request gitlab-org/gitlab-ce!31808
parents b1604f7d 18159235
...@@ -18,6 +18,7 @@ class DeploymentEntity < Grape::Entity ...@@ -18,6 +18,7 @@ class DeploymentEntity < Grape::Entity
end end
expose :created_at expose :created_at
expose :finished_at
expose :tag expose :tag
expose :last? expose :last?
expose :user, using: UserEntity expose :user, using: UserEntity
......
...@@ -4,7 +4,7 @@ class DeploymentSerializer < BaseSerializer ...@@ -4,7 +4,7 @@ class DeploymentSerializer < BaseSerializer
entity DeploymentEntity entity DeploymentEntity
def represent_concise(resource, opts = {}) def represent_concise(resource, opts = {})
opts[:only] = [:iid, :id, :sha, :created_at, :tag, :last?, :id, ref: [:name]] opts[:only] = [:iid, :id, :sha, :created_at, :finished_at, :tag, :last?, :id, ref: [:name]]
represent(resource, opts) represent(resource, opts)
end end
end end
---
title: Add finished_at to the internal API Deployment entity
merge_request: 31808
author:
type: other
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
"required": [ "required": [
"sha", "sha",
"created_at", "created_at",
"finished_at",
"iid", "iid",
"tag", "tag",
"last?", "last?",
...@@ -11,6 +12,7 @@ ...@@ -11,6 +12,7 @@
], ],
"properties": { "properties": {
"created_at": { "type": "string" }, "created_at": { "type": "string" },
"finished_at": { "type": ["string", "null"] },
"id": { "type": "integer" }, "id": { "type": "integer" },
"iid": { "type": "integer" }, "iid": { "type": "integer" },
"last?": { "type": "boolean" }, "last?": { "type": "boolean" },
......
...@@ -32,6 +32,10 @@ describe DeploymentEntity do ...@@ -32,6 +32,10 @@ describe DeploymentEntity do
expect(subject).to include(:created_at) expect(subject).to include(:created_at)
end end
it 'exposes finished_at' do
expect(subject).to include(:finished_at)
end
context 'when the pipeline has another manual action' do context 'when the pipeline has another manual action' do
let(:other_build) { create(:ci_build, :manual, name: 'another deploy', pipeline: pipeline) } let(:other_build) { create(:ci_build, :manual, name: 'another deploy', pipeline: pipeline) }
let!(:other_deployment) { create(:deployment, deployable: other_build) } let!(:other_deployment) { create(:deployment, deployable: other_build) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment