Skip to content

Commit 1056e60

Browse files
x-cubedOctobob
authored andcommitted
Adds AllowDynamicRegistration to the OctopusIDConfigurationResource
+semver: minor GitOrigin-RevId: 8d7d49701bf3f897b616a55bc91f12a4bc93cc85
1 parent f520c29 commit 1056e60

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-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
@@ -6920,6 +6920,7 @@ Octopus.Client.Model.Authentication.OpenIDConnect.OctopusID
69206920
Octopus.Client.Model.Authentication.OpenIDConnect.OpenIDConnectConfigurationResource
69216921
{
69226922
.ctor()
6923+
Nullable<Boolean> AllowDynamicRegistration { get; set; }
69236924
}
69246925
}
69256926
Octopus.Client.Model.Authentication.OpenIDConnect.Okta

source/Octopus.Server.Client/Model/Authentication/OpenIDConnect/OctopusID/OctopusIDConfigurationResource.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System.ComponentModel;
2+
using Octopus.Client.Extensibility.Attributes;
23

34
namespace Octopus.Client.Model.Authentication.OpenIDConnect.OctopusID
45
{
@@ -9,5 +10,10 @@ public OctopusIDConfigurationResource()
910
{
1011
Id = "authentication-octopusid";
1112
}
13+
14+
[DisplayName("Allow Dynamic Registration")]
15+
[Description("Allow Octopus Server to register itself automatically as a client for Octopus ID")]
16+
[Writeable]
17+
public bool? AllowDynamicRegistration { get; set; }
1218
}
1319
}

0 commit comments

Comments
 (0)