We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's assume a simple case:
class IEmailAddress(model.Schema): read_permission( check_spam='inqbus.mc.emailaddress.read_check_spam' ) write_permission( check_spam='inqbus.mc.emailaddress.write_check_spam' ) check_spam = schema.Bool(default=True, title=_("check spam"), required=False, ) class ISpecialEmailAddress(IEmailAddress) check_virus = schema.Bool(default=True, title=_("check virus"), required=False, )
The permissions set on the field "check_spam" are working perfectly on forms utilizing IEmailAddress but not on forms utilizing ISpecialEmailAddress.
Also please have a look on the ongoing discussion of this topic: https://community.plone.org/t/inheritance-of-form-schema-hints/2388
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Let's assume a simple case:
The permissions set on the field "check_spam" are working perfectly on forms utilizing IEmailAddress but not on forms utilizing ISpecialEmailAddress.
Also please have a look on the ongoing discussion of this topic:
https://community.plone.org/t/inheritance-of-form-schema-hints/2388
The text was updated successfully, but these errors were encountered: