Skip to content

Commit

Permalink
Add DefaultRunbookRetentionPolicy to ProjectResource
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanlerch committed Oct 2, 2024
1 parent c1b29d1 commit d01d478
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions source/Octopus.Server.Client/Model/ProjectResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,14 @@ public ProjectResource(string id, string name, string slug) : this()
public bool ForcePackageDownload { get; set; }

[Writeable]
public bool? AllowIgnoreChannelRules { get; set;}

public bool? AllowIgnoreChannelRules { get; set; }

[Writeable]
public RunbookRetentionPeriod DefaultRunbookRetentionPolicy { get; set; }

[Writeable]
public bool? ExecuteDeploymentsOnResilientPipeline { get; set;}
public bool? ExecuteDeploymentsOnResilientPipeline { get; set; }

public IconResource Icon { get; set; }

public ProjectResource Clear()
Expand Down

0 comments on commit d01d478

Please sign in to comment.