stream.exceptions.FeedConfigException 错误

stream.exceptions.FeedConfigException error

我的后端 Django REST Framework 打印此错误。

stream.exceptions.FeedConfigException: The following feeds are not configured: 'user'. This could be the cause of a typo, but otherwise you should configure them on the dashboard of this app.

这是我的源代码片段

class Post(models.Model, Activity):
    parent = models.ForeignKey("self", blank=True, null=True)
    user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True)
    created_at = models.DateTimeField(auto_now=False, auto_now_add=True)
    ...


    @property
    def activity_actor_attr(self):
        return self.user

我想我需要在仪表板中创建 user 提要。但我不明白为什么会这样。用户?喂养?我应该把 Activity 放到 AUTH_USER_MODEL 吗?我没有 UserModel,我正在使用默认的 UserModel。

:(

UPDATE 我添加了 user Feed,它解决了问题。而且我没有看到任何行数据。

我是 getStream() 的新手,需要快速学习它。

我添加了 user Feed 组,它解决了问题。