Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduced infrastructure for tocken exhange and implemented for AzureOnBehalfOf and Auth0 #32

Merged
merged 16 commits into from
May 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated workflow to .NET 8
fancyDevelopment committed Mar 29, 2024
commit 5d83d2a4a5579335ae0d95d7eed4ee6646398465
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

# Build library
- name: Build library
2 changes: 1 addition & 1 deletion .github/workflows/Fancy.ResourceLinker.Gateway.yaml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

# Build library
- name: Build library

Unchanged files with check annotations Beta

/// </summary>
/// <param name="tokenStore">The token store.</param>
/// <param name="tokenClient">The token client.</param>
public TokenService(ITokenStore tokenStore, TokenClient tokenClient, ILogger<TokenService> logger, IWebHostEnvironment environment)

Check failure on line 40 in src/Fancy.ResourceLinker.Gateway/Authentication/TokenService.cs

GitHub Actions / buid

Inconsistent accessibility: parameter type 'TokenClient' is less accessible than method 'TokenService.TokenService(ITokenStore, TokenClient, ILogger<TokenService>, IWebHostEnvironment)'

Check failure on line 40 in src/Fancy.ResourceLinker.Gateway/Authentication/TokenService.cs

GitHub Actions / buid

Inconsistent accessibility: parameter type 'TokenClient' is less accessible than method 'TokenService.TokenService(ITokenStore, TokenClient, ILogger<TokenService>, IWebHostEnvironment)'

Check failure on line 40 in src/Fancy.ResourceLinker.Gateway/Authentication/TokenService.cs

GitHub Actions / buid

Inconsistent accessibility: parameter type 'TokenClient' is less accessible than method 'TokenService.TokenService(ITokenStore, TokenClient, ILogger<TokenService>, IWebHostEnvironment)'

Check failure on line 40 in src/Fancy.ResourceLinker.Gateway/Authentication/TokenService.cs

GitHub Actions / buid

Inconsistent accessibility: parameter type 'TokenClient' is less accessible than method 'TokenService.TokenService(ITokenStore, TokenClient, ILogger<TokenService>, IWebHostEnvironment)'
{
_tokenStore = tokenStore;
_tokenClient = tokenClient;