access fixed within template

This commit is contained in:
anhefti 2020-03-31 14:41:40 +02:00
parent de8db15928
commit 3f57d63fba

View file

@ -227,7 +227,9 @@ public class ConfigTemplateForm implements TemplateComposer {
.withFilter(this.groupFilter)
.sortable()
.widthProportion(1))
.withDefaultAction(pageActionBuilder
.withDefaultActionIf(
() -> modifyGrant,
() -> pageActionBuilder
.newAction(ActionDefinition.SEB_EXAM_CONFIG_TEMPLATE_ATTR_EDIT)
.withParentEntityKey(entityKey)
.create())
@ -249,7 +251,7 @@ public class ConfigTemplateForm implements TemplateComposer {
attrTable::getSelection,
PageAction::applySingleSelectionAsEntityKey,
EMPTY_ATTRIBUTE_SELECTION_TEXT_KEY)
.publishIf(attrTable::hasAnyContent, false)
.publishIf(() -> attrTable.hasAnyContent() && modifyGrant, false)
.newAction(ActionDefinition.SEB_EXAM_CONFIG_TEMPLATE_ATTR_SET_DEFAULT)
.withParentEntityKey(entityKey)
@ -258,7 +260,7 @@ public class ConfigTemplateForm implements TemplateComposer {
action -> this.resetToDefaults(action, attrTable),
EMPTY_ATTRIBUTE_SELECTION_TEXT_KEY)
.noEventPropagation()
.publishIf(attrTable::hasAnyContent, false)
.publishIf(() -> attrTable.hasAnyContent() && modifyGrant, false)
.newAction(ActionDefinition.SEB_EXAM_CONFIG_TEMPLATE_ATTR_LIST_REMOVE_VIEW)
.withParentEntityKey(entityKey)
@ -267,7 +269,7 @@ public class ConfigTemplateForm implements TemplateComposer {
action -> this.removeFormView(action, attrTable),
EMPTY_ATTRIBUTE_SELECTION_TEXT_KEY)
.noEventPropagation()
.publishIf(attrTable::hasAnyContent, false)
.publishIf(() -> attrTable.hasAnyContent() && modifyGrant, false)
.newAction(ActionDefinition.SEB_EXAM_CONFIG_TEMPLATE_ATTR_LIST_ATTACH_DEFAULT_VIEW)
.withParentEntityKey(entityKey)
@ -276,7 +278,7 @@ public class ConfigTemplateForm implements TemplateComposer {
action -> this.attachView(action, attrTable),
EMPTY_ATTRIBUTE_SELECTION_TEXT_KEY)
.noEventPropagation()
.publishIf(attrTable::hasAnyContent, false);
.publishIf(() -> attrTable.hasAnyContent() && modifyGrant, false);
}
pageActionBuilder