Skip to content

Commit 1d7b99b

Browse files
authored
Add isDisabled to tenant dashboard resource (#893)
1 parent 90125d4 commit 1d7b99b

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETCore.approved.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2632,6 +2632,7 @@ Octopus.Client.Model
26322632
Octopus.Client.Model.Resource
26332633
{
26342634
.ctor()
2635+
Boolean IsDisabled { get; set; }
26352636
String Name { get; set; }
26362637
IDictionary<String, ReferenceCollection> ProjectEnvironments { get; set; }
26372638
Octopus.Client.Model.ReferenceCollection TenantTags { get; set; }

source/Octopus.Client.Tests/PublicSurfaceAreaFixture.ThePublicSurfaceAreaShouldNotRegress..NETFramework.approved.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2649,6 +2649,7 @@ Octopus.Client.Model
26492649
Octopus.Client.Model.Resource
26502650
{
26512651
.ctor()
2652+
Boolean IsDisabled { get; set; }
26522653
String Name { get; set; }
26532654
IDictionary<String, ReferenceCollection> ProjectEnvironments { get; set; }
26542655
Octopus.Client.Model.ReferenceCollection TenantTags { get; set; }

source/Octopus.Server.Client/Model/DashboardTenantResource.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ public class DashboardTenantResource : Resource
1111
public string Name { get; set; }
1212
public IDictionary<string, ReferenceCollection> ProjectEnvironments { get; set; }
1313
public ReferenceCollection TenantTags { get; set; }
14+
public bool IsDisabled { get; set; }
1415
}
1516
}

0 commit comments

Comments
 (0)