Skip to content

Commit

Permalink
Merge pull request #1093 from ITfoxtec/1.14.9-development
Browse files Browse the repository at this point in the history
1.14.9 development
  • Loading branch information
Revsgaard authored Jan 13, 2025
2 parents 389f11e + 19f9ef5 commit a52430d
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/FoxIDs.Control/FoxIDs.Control.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/FoxIDs.ControlClient/FoxIDs.ControlClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs.Client</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/FoxIDs.ControlShared/FoxIDs.ControlShared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/FoxIDs.Shared/FoxIDs.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down
2 changes: 1 addition & 1 deletion src/FoxIDs.SharedBase/FoxIDs.SharedBase.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down
4 changes: 3 additions & 1 deletion src/FoxIDs/Controllers/OpenIDConfigController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public OpenIDConfigController(TelemetryScopedLogger logger, IServiceProvider ser
this.serviceProvider = serviceProvider;
}

[ResponseCache(Duration = 86400, Location = ResponseCacheLocation.Client, NoStore = false)]
public async Task<IActionResult> OpenidConfigurationAsync()
{
try
Expand All @@ -42,7 +43,8 @@ public async Task<IActionResult> OpenidConfigurationAsync()
throw new EndpointException($"OpenID Configuration failed for client id '{RouteBinding.DownParty?.Name}'.", ex) { RouteBinding = RouteBinding };
}
}


[ResponseCache(Duration = 86400, Location = ResponseCacheLocation.Client, NoStore = false)]
public IActionResult Keys()
{
try
Expand Down
2 changes: 2 additions & 0 deletions src/FoxIDs/Controllers/SamlController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public SamlController(TelemetryScopedLogger logger, IServiceProvider serviceProv
this.sequenceLogic = sequenceLogic;
}

[ResponseCache(Duration = 86400, Location = ResponseCacheLocation.Client, NoStore = false)]
public async Task<IActionResult> SpMetadata()
{
try
Expand All @@ -47,6 +48,7 @@ public async Task<IActionResult> SpMetadata()
}
}

[ResponseCache(Duration = 86400, Location = ResponseCacheLocation.Client, NoStore = false)]
public async Task<IActionResult> IdPMetadata()
{
try
Expand Down
2 changes: 1 addition & 1 deletion src/FoxIDs/FoxIDs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Version>1.14.8</Version>
<Version>1.14.9</Version>
<RootNamespace>FoxIDs</RootNamespace>
<Authors>Anders Revsgaard</Authors>
<Company>ITfoxtec</Company>
Expand Down

0 comments on commit a52430d

Please sign in to comment.