# Custom user menu tab

**URL:** https://meta.discourse.org/t/custom-user-menu-tab/130091
**Category:** Theme component
**Created:** [October 3, 2019, 1:30am UTC](https://meta.discourse.org/t/custom-user-menu-tab/130091 "2019-10-03T01:30:44Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [October 20, 2020, 10:57pm UTC](https://meta.discourse.org/t/custom-user-menu-tab/130091/7 "2020-10-20T22:57:22Z")

</div>

Yeah definitely possible, currently the component does:

```js
 if (this.currentUser.moderator) {
          parseTabSettings(settings.moderator_only_tab_links);
          return items;
        }

```

…swap out `this.currentUser.moderator` to check for a group membership… and then `settings.moderator_only_tab_links` would be swapped out for the specific links for that group.

I can look into adding a setting that accepts various group names and links when I get a chance.

---

_[View the full topic](https://meta.discourse.org/t/custom-user-menu-tab/130091)._
