diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-08 19:36:27 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-08 19:42:43 +0900 |
commit | 36f63f398b8a36e0b276e78eceaf3c4123be6b13 (patch) | |
tree | b15e2dc9f33c0ee0d25a67041446597dd16b020f /lib | |
parent | eada787376b9f13e7fdd4e7d127074d5c3b3353e (diff) | |
download | libquotient-36f63f398b8a36e0b276e78eceaf3c4123be6b13.tar.gz libquotient-36f63f398b8a36e0b276e78eceaf3c4123be6b13.zip |
RoomEvent::setRoomId()/setSender()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/events/roomevent.cpp | 10 | ||||
-rw-r--r-- | lib/events/roomevent.h | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/events/roomevent.cpp b/lib/events/roomevent.cpp index 62c2a76d..f1e563ff 100644 --- a/lib/events/roomevent.cpp +++ b/lib/events/roomevent.cpp @@ -81,6 +81,16 @@ QString RoomEvent::stateKey() const return fullJson()[StateKeyKeyL].toString(); } +void RoomEvent::setRoomId(const QString& roomId) +{ + editJson().insert(QStringLiteral("room_id"), roomId); +} + +void RoomEvent::setSender(const QString& senderId) +{ + editJson().insert(QStringLiteral("sender"), senderId); +} + void RoomEvent::setTransactionId(const QString& txnId) { auto unsignedData = fullJson()[UnsignedKeyL].toObject(); diff --git a/lib/events/roomevent.h b/lib/events/roomevent.h index ce96174e..e26a7135 100644 --- a/lib/events/roomevent.h +++ b/lib/events/roomevent.h @@ -60,6 +60,9 @@ namespace QMatrixClient QString transactionId() const; QString stateKey() const; + void setRoomId(const QString& roomId); + void setSender(const QString& senderId); + /** * Sets the transaction id for locally created events. This should be * done before the event is exposed to any code using the respective |