Skip to content

Commit

Permalink
Signing alg appears to be upper in API.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Jan 6, 2025
1 parent 7f329fb commit 7841c07
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/Alethic.Auth0.Operator/Models/SigningAlgorithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ namespace Alethic.Auth0.Operator.Models
public enum SigningAlgorithm
{

[JsonStringEnumMemberName("hs256")]
[JsonStringEnumMemberName("HS256")]
HS256,

[JsonStringEnumMemberName("rs256")]
[JsonStringEnumMemberName("RS256")]
RS256,

[JsonStringEnumMemberName("ps256")]
[JsonStringEnumMemberName("PS256")]
PS256

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ spec:
type: array
signing_alg:
enum:
- hs256
- rs256
- ps256
- HS256
- RS256
- PS256
nullable: true
type: string
signing_secret:
Expand Down Expand Up @@ -179,9 +179,9 @@ spec:
type: array
signing_alg:
enum:
- hs256
- rs256
- ps256
- HS256
- RS256
- PS256
nullable: true
type: string
signing_secret:
Expand Down

0 comments on commit 7841c07

Please sign in to comment.