GitLab: Handle certificate issues

Allow to bypass certificate verifications.
Currently the bypassing is not stored into the settings,
so this is not permanent.

Change-Id: Ieb564464a28cf2d4973c6b1baa696d6c22b07177
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2022-06-08 09:00:23 +02:00
parent fdb413c9a7
commit 0cfd264279
5 changed files with 42 additions and 5 deletions

View File

@@ -25,12 +25,11 @@
#pragma once
#include <utils/id.h>
#include <utils/qtcprocess.h>
#include <QObject>
namespace Utils { class Id; }
namespace GitLab {
class Query
@@ -78,6 +77,7 @@ private:
void processFinished();
Utils::QtcProcess m_process;
Utils::Id m_serverId;
bool m_running = false;
bool m_paginated = false;
};