mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 16:55:10 +00:00
[FIX] Leaves now actually do matter on Matrix
This commit is contained in:
parent
0ec028d458
commit
53739dd42d
4 changed files with 46 additions and 1 deletions
|
|
@ -223,9 +223,18 @@ extern char * ParseeFindDMRoom(ParseeData *data, char *mxid, char *jid);
|
|||
/* Gets a DM ID from a Matrix and Jabber user */
|
||||
extern char * ParseeGetDMID(char *mxid, char *jid);
|
||||
|
||||
/* Creates a DM mapping in the database */
|
||||
/** Creates a DM mapping in the database.
|
||||
* -------------------------
|
||||
* Modifies: the Parsee database
|
||||
* See-Also: ParseeDeleteDM */
|
||||
extern void ParseePushDMRoom(ParseeData *, char *mxid, char *jid, char *r);
|
||||
|
||||
/** Destroys a DM mapping from the database, making it effectively non-existant.
|
||||
* ---------------------
|
||||
* Modifies: the Parsee database
|
||||
* See-Also: ParseePushDMRoom */
|
||||
extern void ParseeDeleteDM(ParseeData *data, char *mxid, char *jid);
|
||||
|
||||
/* Trims the component from a JID */
|
||||
extern char * ParseeTrimJID(char *jid);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue