Skip to content

Commit

Permalink
Merge pull request #62 from EventStore/timothycoleman/plumb-required-…
Browse files Browse the repository at this point in the history
…entitlements

[ESDB-193] Plumb Required Entitlements through AuthNZ provider base classes
  • Loading branch information
timothycoleman authored Oct 8, 2024
2 parents 49a0b01 + 86bb45b commit 7cc49f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion EventStore.Plugins.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
.gitignore = .gitignore
LICENSE.md = LICENSE.md
NOTICE.md = NOTICE.md
qodana.yaml = qodana.yaml
README.md = README.md
EndProjectSection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ protected AuthenticationProviderBase(
string? name = null,
string? version = null,
string? licensePublicKey = null,
string[]? requiredEntitlements = null,
string? diagnosticsName = null,
params KeyValuePair<string, object?>[] diagnosticsTags
) : this(new() {
Name = name,
Version = version,
LicensePublicKey = licensePublicKey,
RequiredEntitlements = requiredEntitlements,
DiagnosticsName = diagnosticsName,
DiagnosticsTags = diagnosticsTags
}) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ protected AuthorizationProviderBase(
string? name = null,
string? version = null,
string? licensePublicKey = null,
string[]? requiredEntitlements = null,
string? diagnosticsName = null,
params KeyValuePair<string, object?>[] diagnosticsTags
) : this(new() {
Name = name,
Version = version,
LicensePublicKey = licensePublicKey,
RequiredEntitlements = requiredEntitlements,
DiagnosticsName = diagnosticsName,
DiagnosticsTags = diagnosticsTags
}) { }
Expand Down
2 changes: 1 addition & 1 deletion src/EventStore.Plugins/EventStore.Plugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>The interfaces required to create plugins for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/</Description>
<PackageReleaseNotes>https://eventstore.com/blog/release-notes/</PackageReleaseNotes>
<Copyright>Copyright 2012-2024 Event Store Ltd</Copyright>
<Copyright>Copyright 2011-2024 Event Store Ltd</Copyright>
<PackageTags>eventstore plugins</PackageTags>
</PropertyGroup>

Expand Down

0 comments on commit 7cc49f7

Please sign in to comment.