Проблема: Пользователи не могут видеть вкладки с деталями приглашения, это доступно только сотрудникам
Причина discourse/frontend/discourse/app/routes/user-invited.js at main · discourse/discourse · GitHub
const can_see_invite_details =
this.currentUser.staff ||
this.controllerFor("user").id === this.currentUser?.id;
controller.setProperties({
can_see_invite_details,
});
Здесь отсутствует this.controllerFor("user") — должно быть this.modelFor("user")
