Skip to content

Commit

Permalink
Merge pull request #359 from OctopusDeploy/enh-ltsindicator
Browse files Browse the repository at this point in the history
Add HasLongTermSupport to RootResource
  • Loading branch information
michaelnoonan authored Dec 13, 2018
2 parents c5edcce + ead2b0c commit 504c3ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2974,6 +2974,7 @@ Octopus.Client.Model
.ctor()
String ApiVersion { get; set; }
String Application { get; set; }
Boolean HasLongTermSupport { get; set; }
Guid InstallationId { get; set; }
Boolean IsEarlyAccessProgram { get; set; }
String Version { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3474,6 +3474,7 @@ Octopus.Client.Model
.ctor()
String ApiVersion { get; set; }
String Application { get; set; }
Boolean HasLongTermSupport { get; set; }
Guid InstallationId { get; set; }
Boolean IsEarlyAccessProgram { get; set; }
String Version { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions source/Octopus.Client/Model/RootResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ public class RootResource : Resource
[DefaultValue(false)]
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public bool IsEarlyAccessProgram { get; set; }

[DefaultValue(false)]
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public bool HasLongTermSupport { get; set; }
}
}

0 comments on commit 504c3ff

Please sign in to comment.