-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Support specifying multiple tenants in @TenantFeature #40358
Comments
@Eng-Fouad This is a good idea, but I think it only applies to |
Updated. |
/cc @pedroigor (bearer-token,oidc) |
@Eng-Fouad Would you like to have a look at the PR ? |
Submitted a PR. I had to use repeating qualifier instead of using array member, as querying CDI beans using a qualifier with an array member will only match CDI beans with exact array. i.e. |
Description
Currently, only one tenant can be specified in
@TenantFeature
. It would be nice to be able to specify multiple tenants instead of only one.For example, apply custom Jose4j validator on two tenants:
Implementation ideas
Change:
to
and it is backward compatible as
@TenantFeature("foo")
works with bothString value()
andString[] value()
.The text was updated successfully, but these errors were encountered: