There's still some stuff that could potentially go elsewhere but I think it's enough for now.
14 lines
328 B
C++
14 lines
328 B
C++
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <Quotient/jobs/basejob.h>
|
|
|
|
// TODO: Upstream to libQuotient
|
|
class NeochatGetCommonRoomsJob : public Quotient::BaseJob
|
|
{
|
|
public:
|
|
explicit NeochatGetCommonRoomsJob(const QString &userId);
|
|
};
|