You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/11/09 11:12:38 UTC

[isis] branch master updated: ISIS-2883: site-map: don't include prototyping actions

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 1dbd58d  ISIS-2883: site-map: don't include prototyping actions
1dbd58d is described below

commit 1dbd58d43e3df651db35bb24b884c0550aae2185
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Nov 9 12:12:30 2021 +0100

    ISIS-2883: site-map: don't include prototyping actions
---
 .../apache/isis/core/runtimeservices/sitemap/SitemapServiceDefault.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/sitemap/SitemapServiceDefault.java b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/sitemap/SitemapServiceDefault.java
index a4d9007..a77da98 100644
--- a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/sitemap/SitemapServiceDefault.java
+++ b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/sitemap/SitemapServiceDefault.java
@@ -113,7 +113,7 @@ public class SitemapServiceDefault implements SitemapService {
                     val grid = toGrid(actionElementType.getCorrespondingClass(), Style.CURRENT);
                     grid.visit(new Grid.VisitorAdapter() {
                         @Override public void visit(final ActionLayoutData actionLayoutData) {
-                            actionElementType.getAction(actionLayoutData.getId())
+                            actionElementType.getAction(actionLayoutData.getId(), ActionType.USER)
                             .ifPresent(action->{
                                 if(!groupStack.isEmpty()){
                                     adoc.append(String.format("===== %s\n\n", groupStack.pop()));