File indexing completed on 2024-05-12 16:25:02

0001 // SPDX-FileCopyrightText: 2019 Kitsune Ral <Kitsune-Ral@users.sf.net>
0002 // SPDX-License-Identifier: LGPL-2.1-or-later
0003 
0004 #include "joinrulesevent.h"
0005 
0006 using namespace Quotient;
0007 
0008 QString JoinRulesEvent::joinRule() const
0009 {
0010     return fromJson<QString>(contentJson()["join_rule"_ls]);
0011 }
0012 
0013 QJsonArray JoinRulesEvent::allow() const
0014 {
0015     return contentJson()["allow"_ls].toArray();
0016 }