用户无法查看邀请详情

问题:用户无法查看邀请详情标签页,仅工作人员可以查看

原因 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")

1 个赞