pinax-messages
pinax-messages copied to clipboard
a Django app for allowing users of your site to send messages to each other
Looking for maintainers! There is a lot of pull requests and open issues that the current maintainers, myself included, are just not finding the time to properly get to. Maybe...
Currently there are two items in the pinax-messages that are depreciated in Django 4.0/4.1. /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/django/apps/registry.py:91: RemovedInDjango41Warning: 'pinax.messages' defines default_app_config = 'pinax.messages.apps.AppConfig'. Django now detects this configuration automatically. You can remove...
Update for PR#48. Exact same function though. Give the ability to pass a form in from the defined url to add different capabilities. The group form is just an example...
I am trying to fix this warning which randomly thrown in the console. ```BASH File ".../python3.9/site-packages/pinax/messages/context_processors.py", line 6, in user_messages if request.user.is_authenticated: AttributeError: 'WSGIRequest' object has no attribute 'user' ```...
The create view is described at https://github.com/pinax/pinax-messages#create-message---code I would like to do some extra logic here. How can I customize the create view?
- Added 2 new functions to Thread model. Earliest and latest - Added mixins.py file and placed a LoginRequiredMixin base - Replaced decorator `login_required` by the new base mixin
**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....
**Is your feature request related to a problem? Please describe.** I came to realize that the `first_message` functionality is limited to an old version of Django. Since django 1.11 we...
**Is your feature request related to a problem? Please describe.** In order to implement security for an application that uses this package, a lot needs to be done, for instance,...
I tried to find a way to view both sent and received messages in Inbox, but I see only received messages. And directly visiting `site.com/messages` instead of `site.com/messages/inbox` is giving...