# Users are unable to see invite details

**URL:** https://meta.discourse.org/t/users-are-unable-to-see-invite-details/400775
**Category:** Bug
**Tags:** invites
**Created:** [April 16, 2026, 8:54am UTC](https://meta.discourse.org/t/users-are-unable-to-see-invite-details/400775 "2026-04-16T08:54:44Z")
**Posts on this page:** 1
**Showing post:** 1

<div class="post-metadata">

### Author: ![RGJ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rgj/32/523185_2.png) [@RGJ](https://meta.discourse.org/u/RGJ)
#### Post date: [April 16, 2026, 8:54am UTC](https://meta.discourse.org/t/users-are-unable-to-see-invite-details/400775/1 "2026-04-16T08:54:44Z")

</div>

Issue: Users are not able to see the invite details tabs, only staff can

 ![image](https://global.discourse-cdn.com/meta/original/4X/a/0/4/a04e192790d2c15ac97478ec1a8468211a7845b7.png)

Reason [discourse/frontend/discourse/app/routes/user-invited.js at main · discourse/discourse · GitHub](https://github.com/discourse/discourse/blob/main/frontend/discourse/app/routes/user-invited.js#L6-L12C8)

```js
    const can_see_invite_details =
      this.currentUser.staff ||
      this.controllerFor("user").id === this.currentUser?.id;

    controller.setProperties({
      can_see_invite_details,
    });

```

There is no `this.controllerFor("user")` - this should be `this.modelFor("user")`

---

_[View the full topic](https://meta.discourse.org/t/users-are-unable-to-see-invite-details/400775)._
