stream-django
stream-django copied to clipboard
Django Client - Build Activity Feeds & Streams with GetStream.io
Hello, First of all, thanks a lot for your work on this project :) We are currently using `stream-django` on an application which we are planning to bump to Django...
Hi you all. First - thanks for providing the django client project. Some Django projects use both an integer id/pk along with a separate uuid field where only the uuid...
As stated I'd like to use stream but when I see good ideas like #38, #12, and #60 hanging for 3, 4, 5 years not being given priority or clarity,...
we can't support django.core.paginator.Paginator (we need pk based pagination). best way to go is to ship our own paginator and make sure that it plays nicely with django.views.generic.list ListView
Hey guys, Some of the fields in my feeds don't get enriched if the target field points to a class that has been inherited. For models with inheritance, the PK...
Hello, Would it be possible to add `feed_type=None` in: https://github.com/GetStream/stream-django/blob/master/stream_django/managers.py#L39 and https://github.com/GetStream/stream-django/blob/master/stream_django/managers.py#L45 E.g. ``` def follow_user(self, user_id, target_user_id, feed_type=None): news_feeds = self.get_news_feeds(user_id) target_feed = self.get_user_feed(target_user_id, feed_type) for feed in news_feeds.values():...
right now serializing enriched data is very complex and requires lot of knowledge of how DRF works (and probably some smart tricks to support nested data / dynamic model serialization)....
The `create_model_reference` function creates a reference using model name. This is inconsistent as compared to other Stream clients. For example, an activity added using stream-django results in actor reference being...
I have a model as following: ``` class UserMoodLog(TimeStampedModel, Activity): user = models.ForeignKey('users.User', on_delete=models.CASCADE) is_happy = models.BooleanField(_("is happy"), default=False) ``` I want to create activity associated to this model on...
I'm running into some problems keeping data integrity between getstream and our database with transactions enabled, although the bigger problem is recovering from any loss of integrity. Problem is that...