blob: a2e0b73b58699c2e7bb83b1e7e8c6a06b7dfe0df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SPDX-FileCopyrightText: 2017 Kitsune Ral <kitsune-ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later
#pragma once
#include "roomevent.h"
namespace Quotient {
class QUOTIENT_API RedactionEvent : public RoomEvent {
public:
QUO_EVENT(RedactionEvent, "m.room.redaction")
using RoomEvent::RoomEvent;
QString redactedEvent() const
{
return fullJson()["redacts"_ls].toString();
}
QUO_CONTENT_GETTER(QString, reason)
};
} // namespace Quotient
|