mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
25 lines
371 B
C
25 lines
371 B
C
|
#include "httplib.h"
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <string>
|
||
|
|
||
|
class SSOHandler : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SSOHandler(QObject *parent = nullptr);
|
||
|
|
||
|
~SSOHandler();
|
||
|
|
||
|
std::string url() const;
|
||
|
|
||
|
signals:
|
||
|
void ssoSuccess(std::string token);
|
||
|
void ssoFailed();
|
||
|
|
||
|
private:
|
||
|
httplib::Server svr;
|
||
|
int port = 0;
|
||
|
};
|