Skip to content

Commit

Permalink
Merge pull request #263 from OctopusDeploy/enh-projectgroupconfiguration
Browse files Browse the repository at this point in the history
adding project groups to the Dashboard Configuration
  • Loading branch information
slewis74 authored May 23, 2018
2 parents 8ef4dec + 5fdc50d commit 3be476e
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 @@ -1344,6 +1344,7 @@ Octopus.Client.Model
{
.ctor()
Octopus.Client.Model.ReferenceCollection IncludedEnvironmentIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedProjectGroupIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedProjectIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedTenantIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedTenantTags { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1814,6 +1814,7 @@ Octopus.Client.Model
{
.ctor()
Octopus.Client.Model.ReferenceCollection IncludedEnvironmentIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedProjectGroupIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedProjectIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedTenantIds { get; set; }
Octopus.Client.Model.ReferenceCollection IncludedTenantTags { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions source/Octopus.Client/Model/DashboardConfigurationResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ public class DashboardConfigurationResource : Resource
{
public DashboardConfigurationResource()
{
IncludedProjectGroupIds = new ReferenceCollection();
IncludedProjectIds = new ReferenceCollection();
IncludedEnvironmentIds = new ReferenceCollection();
IncludedTenantIds = new ReferenceCollection();
IncludedTenantTags = new ReferenceCollection();
}

[Writeable]
public ReferenceCollection IncludedProjectGroupIds { get; set; }

[Writeable]
public ReferenceCollection IncludedProjectIds { get; set; }

Expand Down

0 comments on commit 3be476e

Please sign in to comment.