Skip to content

Commit b30ede9

Browse files
authored
APP-1447 - Add keep promotion type (#53)
* APP-1447 - Add keep promotion type
1 parent a68c3ac commit b30ede9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apptrust/model/promote_app_version_request.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package model
33
const (
44
PromotionTypeCopy = "copy"
55
PromotionTypeMove = "move"
6+
PromotionTypeKeep = "keep"
67

78
// This value cannot be set via the --promotion-type flag in the CLI.
89
// It is sent to the promotion_type field in the REST API only when the --dry-run flag is used.
@@ -12,6 +13,7 @@ const (
1213
var PromotionTypeValues = []string{
1314
PromotionTypeCopy,
1415
PromotionTypeMove,
16+
PromotionTypeKeep,
1517
}
1618

1719
type CommonPromoteAppVersion struct {

0 commit comments

Comments
 (0)