Skip to content

Commit

Permalink
Merge pull request #9 from OS2Valghalla/JobRoleDescription
Browse files Browse the repository at this point in the history
Add JobRoleDescription to auth flow
  • Loading branch information
ramogens-OS2 authored Feb 19, 2024
2 parents 996345d + 7787912 commit 77c5939
Show file tree
Hide file tree
Showing 10 changed files with 5,263 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public class InternalAuthConfiguration : IConfiguration
public string Authority { get; init; } = null!;
public string Issuer { get; init; } = null!;
public string SigningCertificatePassword { get; init; } = null!;
public string JobRoleDescription { get; init; } = null!;
}
}
2 changes: 1 addition & 1 deletion Valghalla.Application/Saml/ISaml2AuthService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public interface ISaml2AuthService
void SaveClientSession();
Task<string> GetLoginRedirectUrlAsync(CancellationToken cancellationToken);
Task<string> LogoutAsync(bool profileDeleted, CancellationToken cancellationToken);
Task<string> SetupAssertionConsumerServiceAsync(Func<ClaimsPrincipal, ClaimsPrincipal> transform, CancellationToken cancellationToken);
Task<string> SetupAssertionConsumerServiceAsync(Func<ClaimsPrincipal, ClaimsPrincipal> transform, bool isInternal, CancellationToken cancellationToken);
Task<string> SetupLogoutResponseAsync(string logoutPath, CancellationToken cancellationToken);
}
}
Loading

0 comments on commit 77c5939

Please sign in to comment.