gnu-social/plugins/DirectMessage
Alexei Sorokin 55136c1c6f [DirectMessage] Simplify the inbox query 2020-09-02 15:12:20 +03:00
..
actions [DirectMessage] Update ApiDirectMessageNew action 2020-07-29 17:50:29 +01:00
classes [DATABASE] Fix index identifiers and clean up redundant ones 2020-07-31 16:12:48 +03:00
lib [DirectMessage] Simplify the inbox query 2020-09-02 15:12:20 +03:00
locale [VersionBump] 2.0.0alpha0 2020-08-04 05:31:44 +01:00
DirectMessagePlugin.php [DirectMessage] PSR12-format 2020-07-28 04:46:10 +01:00
EVENTS.txt [DirectMessage] Major plugin rework 2019-08-22 03:13:58 +01:00
README [DirectMessage] Major plugin rework 2019-08-22 03:13:58 +01:00

README

The DirectMessage plugin allows users to send Direct Messages

Installation
============
This plugin is enabled by default

Settings
========
none

Changes from previous release
=============================

- Migrate from message table to notice table

This change implied the write of upgrading logic, the addition of a new
Notice scope (NOTICE::MESSAGE_SCOPE) and updating the save logic.

- Support Federation

DM is still in charge of local communications-only but it now uses a few new
custom events to allow remote handling of the private messages.

TODO
====

- Review API actions, broken after new update
- Review Command events
- Update messagelistitem (UI) to support multi-recipient. Right now we present only
one of the recipients in the message header.
- Update messagelistitem (UI) to support no-recipient, which happens when a message
is sent to profiles that blocked the sender. Right now we don't present this messages
at all because of the UI requirements, but it is still stored in the database.
- Add delete, like and reply actions. Replies need further changes like adding
support for private-conversations.