Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies = [
"kitconcept.solr==2.0.0a14",
"kitconcept.contactblock==1.0.0a6",
"kitconcept-plate",
"kitconcept.keywordmanager"
]

[dependency-groups]
Expand Down
7 changes: 7 additions & 0 deletions backend/src/kitconcept/intranet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Init and utils."""

from kitconcept.keywordmanager import config
from zope.i18nmessageid import MessageFactory

import logging
Expand All @@ -12,3 +13,9 @@
_ = MessageFactory(PACKAGE_NAME)

logger = logging.getLogger(PACKAGE_NAME)

config.IGNORE_INDEXES.extend([
"location_reference",
"organisational_unit_reference",
"roles",
])
Comment on lines +17 to +21

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

@sneridagh this setting set's indexes that are not allowed to be managed by the keyword manager, there are also "commentators" & "responsibilities" indexes in k.intranet, should those be ignored as well?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should be a configuration in the registry, never hard-coded

17 changes: 17 additions & 0 deletions backend/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion frontend/mrs.developer.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,13 @@
"url": "git@github.com:kitconcept/volto-contact-block.git",
"https": "https://github.com/kitconcept/volto-contact-block.git",
"tag": "1.0.0a6"
},
"volto-keywordmanager": {
"develop": true,
"output": "packages",
"package": "@kitconcept/volto-keywordmanager",
"url": "git@github.com:kitconcept/kitconcept-keywordmanager.git",
"https": "https://github.com/kitconcept/kitconcept-keywordmanager.git",
"tag": "1.0.0a1"
}
}
}
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"@kitconcept/volto-carousel-block": "workspace:*",
"@kitconcept/volto-iframe-block": "workspace:*",
"@kitconcept/volto-bm3-compat": "workspace:*",
"@kitconcept/volto-keywordmanager": "workspace:*",
"@plone/registry": "workspace:*",
"react-aria-components": "catalog:"
},
Expand Down
4 changes: 3 additions & 1 deletion frontend/packages/kitconcept-intranet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
"@plone-collective/volto-authomatic",
"@kitconcept/volto-solr",
"@kitconcept/volto-contact-block",
"@kitconcept/volto-plate"
"@kitconcept/volto-plate",
"@kitconcept/volto-keywordmanager"
],
"dependencies": {
"@eeacms/volto-accordion-block": "^12.0.0",
Expand All @@ -92,6 +93,7 @@
"@kitconcept/volto-iframe-block": "workspace:*",
"@kitconcept/volto-light-theme": "workspace:*",
"@kitconcept/volto-contact-block": "workspace:*",
"@kitconcept/volto-keywordmanager": "workspace:*",
"@plone/components": "workspace:*",
"@plone/volto-form-block": "^1.0.0-alpha.3",
"@plone-collective/volto-authomatic": "3.0.0-alpha.6",
Expand Down
140 changes: 62 additions & 78 deletions frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading