Skip to content

Commit

Permalink
Merge pull request #901 from dlcs/bugfix/ICS-31/setting_loading
Browse files Browse the repository at this point in the history
Explicitely bind DlcsSettings
  • Loading branch information
p-kaczynski committed Sep 6, 2024
2 parents 5397f96 + 434bc1c commit 70a308a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protagonist/DLCS.Core/Settings/DlcsSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ public class DlcsSettings
/// <summary>
/// List of valid issuers of JWT for authentication
/// </summary>
public ICollection<string> JwtValidIssuers { get; set; } = Array.Empty<string>();
public string[] JwtValidIssuers { get; set; } = Array.Empty<string>();
}

0 comments on commit 70a308a

Please sign in to comment.