Skip to content

Commit

Permalink
Rename folder for in-memoty repository (#60)
Browse files Browse the repository at this point in the history
Rename folder for in-memoty repository
  • Loading branch information
linuxchata authored Nov 11, 2024
1 parent ba05724 commit bb3779d
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Shark.AuthorizationServer.Common;

public sealed class ProofKeyForCodeExchangeProvider
public static class ProofKeyForCodeExchangeProvider
{
public static string GetCodeChallenge(string codeVerifier, string codeChallengeMethod)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void Load()
}
}

private string GetKey(string key)
private static string GetKey(string key)
{
return $"{Prefix}{key}";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public async Task Remove(PersistedGrant item)
return null;
}

private string GetKey(string key)
private static string GetKey(string key)
{
return $"{Prefix}{key}";
}
Expand Down
2 changes: 1 addition & 1 deletion src/Shark.OAuth2.0.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shark.AuthorizationServer.D
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shark.AuthorizationServer.DomainServices", "Shark.AuthorizationServer.DomainServices\Shark.AuthorizationServer.DomainServices.csproj", "{270CCBB0-65BA-4F5D-85E3-0A39718FC464}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shark.AuthorizationServer.Repositories.InMemory", "Shark.AuthorizationServer.Repositories\Shark.AuthorizationServer.Repositories.InMemory.csproj", "{00BD7CAA-805A-430D-8B25-C0AAAB336499}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shark.AuthorizationServer.Repositories.InMemory", "Shark.AuthorizationServer.Repositories.InMemory\Shark.AuthorizationServer.Repositories.InMemory.csproj", "{00BD7CAA-805A-430D-8B25-C0AAAB336499}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shark.AuthorizationServer.Common", "Shark.AuthorizationServer.Common\Shark.AuthorizationServer.Common.csproj", "{2E59163B-501A-4896-8F3E-45CEDC4C110F}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Shark.AuthorizationServer.Repositories.InMemory\Shark.AuthorizationServer.Repositories.InMemory.csproj" />
<ProjectReference Include="..\Shark.AuthorizationServer.Repositories.SqLite\Shark.AuthorizationServer.Repositories.SqLite.csproj" />
<ProjectReference Include="..\Shark.AuthorizationServer.Repositories\Shark.AuthorizationServer.Repositories.InMemory.csproj" />
<ProjectReference Include="..\Shark.AuthorizationServer\Shark.AuthorizationServer.csproj" />
</ItemGroup>

Expand Down

0 comments on commit bb3779d

Please sign in to comment.