Skip to content

Commit

Permalink
Fix error when freshly installing a Plone site where is missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Nov 3, 2023
1 parent 83dd559 commit ad73cbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Changelog
15.1.0 (unreleased)
-------------------

- Fix error when freshly installing a Plone site where `getNonInstallableProfiles` is missing.
Ref: https://github.com/plone/Products.CMFPlone/issues/3862
[thet]
- Updated styles.
- Short report tweaks
Ref: scrum-1295
Expand Down
3 changes: 3 additions & 0 deletions src/euphorie/deployment/products.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@

@implementer(INonInstallable)
class HideEuphorieProducts:
def getNonInstallableProfiles(self):
return []

def getNonInstallableProducts(self):
return ["euphorie.content", "euphorie.client"]

0 comments on commit ad73cbc

Please sign in to comment.