// SPDX-FileCopyrightText: 2021 Carl Schwan // // SPDX-License-Identifier: LGPL-2.1-or-later #include #include namespace Quotient { class Connection; } class TestOlmAccount : public QObject { Q_OBJECT private Q_SLOTS: void pickleUnpickledTest(); void identityKeysValid(); void signatureValid(); void oneTimeKeysValid(); //void removeOneTimeKeys(); void deviceKeys(); void encryptedFile(); void uploadIdentityKey(); void uploadOneTimeKeys(); void uploadSignedOneTimeKeys(); void uploadKeys(); void queryTest(); void claimKeys(); void claimMultipleKeys(); void enableEncryption(); }; href='/nicolas/libquotient/'>libquotient
Unnamed repository; edit this file 'description' to name the repository.Nicolas Peugnet
aboutsummaryrefslogtreecommitdiff
blob: 0b441279b2500a46743f33c17dd051633f655f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "wellknown.h"

using namespace Quotient;

QUrl GetWellknownJob::makeRequestUrl(QUrl baseUrl)
{
    return BaseJob::makeRequestUrl(std::move(baseUrl),
                                   makePath("/.well-known", "/matrix/client"));
}

GetWellknownJob::GetWellknownJob()
    : BaseJob(HttpVerb::Get, QStringLiteral("GetWellknownJob"),
              makePath("/.well-known", "/matrix/client"), false)
{}