Skip to content

Commit 8f4536d

Browse files
authored
Merge pull request #19 from jokk-itu/feature/grant-management
Feature/grant management
2 parents 57e5a97 + 7b8a5d1 commit 8f4536d

File tree

215 files changed

+8559
-15780
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

215 files changed

+8559
-15780
lines changed

authserver.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer", "src\AuthServer\AuthServer.csproj", "{C98FAAD0-0DBC-42CA-99C2-D5C43D4DF0B6}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Tests.ArchitectureTest", "tests\AuthServer.Tests.ArchitectureTest\AuthServer.Tests.ArchitectureTest.csproj", "{07FBB232-3B80-4335-B75E-E195E46754EB}"
9-
EndProject
108
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Tests.Core", "tests\AuthServer.Tests.Core\AuthServer.Tests.Core.csproj", "{057AB97C-D946-4BB7-B79E-A79FBB6AE108}"
119
EndProject
1210
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AuthServer.Tests.IntegrationTest", "tests\AuthServer.Tests.IntegrationTest\AuthServer.Tests.IntegrationTest.csproj", "{B1B31CD2-08D3-4967-B52A-6B983A9A00A7}"
@@ -27,10 +25,6 @@ Global
2725
{C98FAAD0-0DBC-42CA-99C2-D5C43D4DF0B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
2826
{C98FAAD0-0DBC-42CA-99C2-D5C43D4DF0B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
2927
{C98FAAD0-0DBC-42CA-99C2-D5C43D4DF0B6}.Release|Any CPU.Build.0 = Release|Any CPU
30-
{07FBB232-3B80-4335-B75E-E195E46754EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31-
{07FBB232-3B80-4335-B75E-E195E46754EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
32-
{07FBB232-3B80-4335-B75E-E195E46754EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
33-
{07FBB232-3B80-4335-B75E-E195E46754EB}.Release|Any CPU.Build.0 = Release|Any CPU
3428
{057AB97C-D946-4BB7-B79E-A79FBB6AE108}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3529
{057AB97C-D946-4BB7-B79E-A79FBB6AE108}.Debug|Any CPU.Build.0 = Debug|Any CPU
3630
{057AB97C-D946-4BB7-B79E-A79FBB6AE108}.Release|Any CPU.ActiveCfg = Release|Any CPU

src/AuthServer.TestClient/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@
133133
app.MapGet("/api/logout/interactive", async httpContext =>
134134
{
135135
await httpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
136-
await httpContext.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme, new OpenIdConnectChallengeProperties(null, new Dictionary<string, object?>
136+
await httpContext.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme, new OpenIdConnectChallengeProperties(
137+
new Dictionary<string, string?>(), new Dictionary<string, object?>
137138
{
138139
{ "interactive", true }
139140
}));

0 commit comments

Comments
 (0)