Merge branch 'master' into search

This commit is contained in:
John Supplee 2021-03-05 21:46:06 +02:00
commit 5f53c71b0c
90 changed files with 2385 additions and 1452 deletions

View file

@ -63,6 +63,7 @@ if (Meteor.isServer) {
'swimlaneId',
'customField',
'customFieldValue',
'attachmentId'
];
const responseFunc = data => {
const paramCommentId = data.commentId;
@ -124,6 +125,7 @@ if (Meteor.isServer) {
'oldSwimlane',
'label',
'attachment',
'attachmentId'
].forEach(key => {
if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;
});

View file

@ -373,6 +373,9 @@ function buildQuery(sessionId, queryParams) {
boards.forEach(board => {
board.labels
.filter(boardLabel => {
if (!boardLabel.name) {
return false;
}
return boardLabel.name.match(reLabel);
})
.forEach(boardLabel => {

View file

@ -15,6 +15,7 @@ Meteor.publish('setting', () => {
customLoginLogoImageUrl: 1,
customLoginLogoLinkUrl: 1,
textBelowCustomLoginLogo: 1,
automaticLinkedUrlSchemes: 1,
customTopLeftCornerLogoImageUrl: 1,
customTopLeftCornerLogoLinkUrl: 1,
customTopLeftCornerLogoHeight: 1,