You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
@classmethoddefsent(cls, user):
""" Returns the sent message folder :param user: User to check the sent messages :return: """ids= [t.pkfortincls.objects.filter(userthread__user=user, userthread__deleted=False)
ift.is_user_first_message(user)]
returncls.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)
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: