Is your feature request related to a problem? Please describe.
Adding a concept of the sent box or something that allows knowing who started a thread in the first place.
Describe the solution you'd like
Adding a concept of a sent box it would help to understand which conversations you have started and map better.
@classmethod
def sent(cls, user):
"""
Returns the sent message folder
:param user: User to check the sent messages
:return:
"""
ids = [t.pk for t in cls.objects.filter(userthread__user=user, userthread__deleted=False)
if t.is_user_first_message(user)]
return cls.objects.filter(userthread__user=user, userthread__deleted=False, pk__in=ids)
Sent box with thread start
@classmethod
def sent(cls, user):
"""
Returns the sent message folder
:param user: User to check the sent messages
:return:
"""
return cls.objects.filter(threads_started__user=user, userthread__deleted=False)
Is your feature request related to a problem? Please describe. Adding a concept of the sent box or something that allows knowing who started a thread in the first place.
Describe the solution you'd like Adding a concept of a sent box it would help to understand which conversations you have started and map better.
For the ThreadStart:
For the sent box without thread start:
Sent box with thread start