diff --git a/ZitiDesktopEdge.Client/DataStructures/DataStructures.cs b/ZitiDesktopEdge.Client/DataStructures/DataStructures.cs index 6d551706d..0c3efd3e5 100644 --- a/ZitiDesktopEdge.Client/DataStructures/DataStructures.cs +++ b/ZitiDesktopEdge.Client/DataStructures/DataStructures.cs @@ -239,6 +239,7 @@ public class IdentifierPayload { public class EnrollIdentifierPayload { public string JwtFileName { get; set; } public string JwtContent { get; set; } + public bool UseKeychain { get; set; } } public class EnrollIdentifierFunction : ServiceFunction { diff --git a/ZitiDesktopEdge.Client/ServiceClient/DataClient.cs b/ZitiDesktopEdge.Client/ServiceClient/DataClient.cs index 032478f04..48e8df1f1 100644 --- a/ZitiDesktopEdge.Client/ServiceClient/DataClient.cs +++ b/ZitiDesktopEdge.Client/ServiceClient/DataClient.cs @@ -159,7 +159,8 @@ async public Task AddIdentityAsync(string jwtFileName, bool activate, Command = "AddIdentity", Data = new EnrollIdentifierPayload() { JwtFileName = jwtFileName, - JwtContent = jwtContent + JwtContent = jwtContent, + // future use UseKeychain = true, } }; diff --git a/release-notes.md b/release-notes.md index e1fc303c2..7ff5b52a7 100644 --- a/release-notes.md +++ b/release-notes.md @@ -18,7 +18,8 @@ # Release 2.5.0.12 ## What's New -* Keychain integration and TPM now used! +* OIDC enabled, implementation (coming soon) +* Keychain integration and TPM enablemed, implementation (coming soon) ## Other changes: * n/a