mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
Merge branch 'master' into feat/operation-logs
Resolve conflict in webdav-sync-expansion.spec.ts: - Use simplified sync verification without reload (sync updates NgRx directly) - Test: B marks task done -> sync -> verify A sees task as done
This commit is contained in:
commit
6c098b6eaa
22 changed files with 2118 additions and 1111 deletions
|
|
@ -23,11 +23,13 @@ export const sendJiraRequest = ({
|
|||
// log('--------------------------------------------------------------------');
|
||||
fetch(url, {
|
||||
...requestInit,
|
||||
// allow self signed certificates
|
||||
// Allow self-signed certificates for self-hosted Jira instances.
|
||||
// This is an intentional user-configurable setting (isAllowSelfSignedCertificate).
|
||||
// CodeQL alert js/disabling-certificate-validation is expected here.
|
||||
...(jiraCfg && jiraCfg.isAllowSelfSignedCertificate
|
||||
? {
|
||||
agent: new Agent({
|
||||
rejectUnauthorized: false,
|
||||
rejectUnauthorized: false, // lgtm[js/disabling-certificate-validation]
|
||||
}),
|
||||
}
|
||||
: {}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue