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

fix AuthorizationTypedExternalSource #259

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ public abstract class AuthorizationTypedExternalSourceBase<TSecurityContext> : I

private readonly IRepository<PermissionFilterEntity> permissionFilterEntityRepository;

private readonly SecurityContextInfo securityContextInfo;
private readonly SecurityContextInfo<TSecurityContext, Guid> securityContextInfo;

protected AuthorizationTypedExternalSourceBase(
IRepository<TSecurityContext> securityContextRepository,
IRepository<EntityType> entityTypeRepository,
IRepository<PermissionFilterEntity> permissionFilterEntityRepository,
SecurityContextInfo securityContextInfo)
SecurityContextInfo<TSecurityContext, Guid> securityContextInfo)
{
this.securityContextRepository = securityContextRepository;
this.entityTypeRepository = entityTypeRepository;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public HierarchicalAuthorizationTypedExternalSource(
IRepository<TSecurityContext> securityContextRepository,
IRepository<EntityType> entityTypeRepository,
IRepository<PermissionFilterEntity> permissionFilterEntityRepository,
SecurityContextInfo securityContextInfo,
SecurityContextInfo<TSecurityContext, Guid> securityContextInfo,
ISecurityContextDisplayService<TSecurityContext> displayService)
: base(securityContextRepository, entityTypeRepository, permissionFilterEntityRepository, securityContextInfo)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public PlainAuthorizationTypedExternalSource(
IRepository<TSecurityContext> securityContextRepository,
IRepository<EntityType> entityTypeRepository,
IRepository<PermissionFilterEntity> permissionFilterEntityRepository,
SecurityContextInfo securityContextInfo,
SecurityContextInfo<TSecurityContext, Guid> securityContextInfo,
ISecurityContextDisplayService<TSecurityContext> displayService)
: base(securityContextRepository, entityTypeRepository, permissionFilterEntityRepository, securityContextInfo)
{
Expand Down
6 changes: 3 additions & 3 deletions src/__SolutionItems/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[assembly: AssemblyCompany("Luxoft")]
[assembly: AssemblyCopyright("Copyright © Luxoft 2009-2023")]

[assembly: AssemblyVersion("19.1.8.0")]
[assembly: AssemblyFileVersion("19.1.8.0")]
[assembly: AssemblyInformationalVersion("19.1.8.0")]
[assembly: AssemblyVersion("19.1.9.0")]
[assembly: AssemblyFileVersion("19.1.9.0")]
[assembly: AssemblyInformationalVersion("19.1.9.0")]

#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
Expand Down
Loading