We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5553ef + 6632ce3 commit df78167Copy full SHA for df78167
1 file changed
src/app/menu.resolver.ts
@@ -659,6 +659,19 @@ export class MenuResolver implements Resolve<boolean> {
659
createSiteAdministratorMenuSections() {
660
this.authorizationService.isAuthorized(FeatureID.AdministratorOf).subscribe((authorized) => {
661
const menuList = [
662
+ /* Communities & Collections */
663
+ {
664
+ id: 'browse_global_communities_and_collections',
665
+ active: false,
666
+ visible: Boolean(environment.layout.navbar.showCommunityCollection),
667
+ model: {
668
+ type: MenuItemType.LINK,
669
+ text: `menu.section.communities_and_collections`,
670
+ link: `/community-list`
671
+ } as LinkMenuItemModel,
672
+ icon: 'list-alt',
673
+ index: 2
674
+ },
675
/* Notifications */
676
{
677
id: 'notifications',
0 commit comments