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

Add behavior to hide modules from trainings. #669

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Changes from 1 commit
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 @@ -78,6 +78,9 @@ def setUp(self):
fti_module.behaviors = tuple(
list(fti_module.behaviors) + ["euphorie.hide_from_training"]
)
from plone.dexterity.schema import SCHEMA_CACHE

SCHEMA_CACHE.invalidate("euphorie.module")
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wow, thanks. didn't think of the schema cache!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wasn't even aware it existed - I did a quick step through and got lucky because I noticed it. 😄


def create_content(self, survey_xml):
session = Session()
Expand Down
Loading