Skip to content

Commit

Permalink
feat: Include Hidden spaces for Space Template Managers when listing …
Browse files Browse the repository at this point in the history
…- MEED-7771 - Meeds-io/MIPs#160 (#255)

Prior to this change, the spaces listing wasn't proposing the hidden
spaces for Space Template identified Masters. This change will use a
specific Filter on Suggester component to allow listing managing and
hidden spaces as well.
  • Loading branch information
boubaker committed Nov 14, 2024
1 parent 8dc5460 commit 53dd0a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {
allGroupsForAdmin: true,
groupType: 'GROUP',
userGroup: '/platform/users',
searchOptions: {filterType: eXo.env.portal.isAdministrator && 'all' || 'member'},
searchOptions: {filterType: eXo.env.portal.isAdministrator && 'all' || 'accessible'},
loading: false,
navigationNode: null,
accessPermission: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
allGroupsForAdmin: true,
groupType: 'GROUP',
userGroup: '/platform/users',
searchOptions: {filterType: eXo.env.portal.isAdministrator && 'all' || 'member'},
searchOptions: {filterType: eXo.env.portal.isAdministrator && 'all' || 'accessible'},
}),
computed: {
suggesterLabels() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
saving: false,
space: null,
searchOptions: {
filterType: 'member'
filterType: 'accessible',
},
}),
computed: {
Expand Down

0 comments on commit 53dd0a8

Please sign in to comment.