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

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 soaces as well.
  • Loading branch information
boubaker committed Nov 13, 2024
1 parent ee7918f commit 7e912d8
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' || 'member_or_managing'},
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' || 'member_or_managing'},
}),
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: 'member_or_managing'
},
}),
computed: {
Expand Down

0 comments on commit 7e912d8

Please sign in to comment.