// SPDX-FileCopyrightText: 2019 Kitsune Ral // SPDX-License-Identifier: LGPL-2.1-or-later #include "joinrulesevent.h" using namespace Quotient; QString JoinRulesEvent::joinRule() const { return fromJson(contentJson()["join_rule"_ls]); } QJsonArray JoinRulesEvent::allow() const { return contentJson()["allow"_ls].toArray(); }