Skip to content

Commit

Permalink
update release note
Browse files Browse the repository at this point in the history
  • Loading branch information
dovholuknf committed Oct 18, 2024
1 parent f7d0e6c commit c95cfb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions ZitiDesktopEdge.Client/DataStructures/DataStructures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion ZitiDesktopEdge.Client/ServiceClient/DataClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ async public Task<Identity> AddIdentityAsync(string jwtFileName, bool activate,
Command = "AddIdentity",
Data = new EnrollIdentifierPayload() {
JwtFileName = jwtFileName,
JwtContent = jwtContent
JwtContent = jwtContent,
// future use UseKeychain = true,
}
};

Expand Down
3 changes: 2 additions & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c95cfb6

Please sign in to comment.