mirror of
https://github.com/wekan/wekan.git
synced 2026-02-03 07:01:47 +01:00
Merge branch 'master' into search
This commit is contained in:
commit
5f53c71b0c
90 changed files with 2385 additions and 1452 deletions
|
|
@ -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]}"`;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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 => {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ Meteor.publish('setting', () => {
|
|||
customLoginLogoImageUrl: 1,
|
||||
customLoginLogoLinkUrl: 1,
|
||||
textBelowCustomLoginLogo: 1,
|
||||
automaticLinkedUrlSchemes: 1,
|
||||
customTopLeftCornerLogoImageUrl: 1,
|
||||
customTopLeftCornerLogoLinkUrl: 1,
|
||||
customTopLeftCornerLogoHeight: 1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue