some changes inside bug reportin backend

This commit is contained in:
2016-08-22 19:10:37 +03:00
parent f3f9239984
commit e5b1102abf
4 changed files with 74 additions and 7 deletions

View File

@ -31,13 +31,17 @@ class AWBugReporter : public QObject
public:
explicit AWBugReporter(QObject *parent = nullptr);
virtual ~AWBugReporter();
Q_INVOKABLE QString generateText(const QString description,
const QString reproduce,
const QString expected);
Q_INVOKABLE void sendBugReport(const QString title, const QString body);
signals:
void replyReceived(bool status, QString url);
void replyReceived(const int number, const QString url);
private slots:
void issueReplyRecieved(QNetworkReply *reply);
void showInformation(const int number, const QString url);
private:
};