mirror of
https://github.com/wekan/wekan.git
synced 2026-02-23 00:14:07 +01:00
Merge branch 'master' of https://github.com/wekan/wekan
This commit is contained in:
commit
0ce2f9ea43
204 changed files with 13619 additions and 2379 deletions
|
|
@ -34,6 +34,8 @@ Meteor.publish('boards', function() {
|
|||
description: 1,
|
||||
color: 1,
|
||||
members: 1,
|
||||
orgs: 1,
|
||||
teams: 1,
|
||||
permission: 1,
|
||||
type: 1,
|
||||
sort: 1,
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ Meteor.publish('org', function(query, limit) {
|
|||
limit,
|
||||
sort: { createdAt: -1 },
|
||||
fields: {
|
||||
displayName: 1,
|
||||
desc: 1,
|
||||
name: 1,
|
||||
website: 1,
|
||||
teams: 1,
|
||||
orgDisplayName: 1,
|
||||
orgDesc: 1,
|
||||
orgShortName: 1,
|
||||
orgWebsite: 1,
|
||||
orgTeams: 1,
|
||||
createdAt: 1,
|
||||
loginDisabled: 1,
|
||||
orgIsActive: 1,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ Meteor.publish('people', function(query, limit) {
|
|||
loginDisabled: 1,
|
||||
authenticationMethod: 1,
|
||||
importUsernames: 1,
|
||||
orgs: 1,
|
||||
teams: 1,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ Meteor.publish('setting', () => {
|
|||
customHTMLbeforeBodyEnd: 1,
|
||||
displayAuthenticationMethod: 1,
|
||||
defaultAuthenticationMethod: 1,
|
||||
spinnerName: 1,
|
||||
},
|
||||
},
|
||||
);
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ Meteor.publish('team', function(query, limit) {
|
|||
limit,
|
||||
sort: { createdAt: -1 },
|
||||
fields: {
|
||||
displayName: 1,
|
||||
desc: 1,
|
||||
name: 1,
|
||||
website: 1,
|
||||
teamDisplayName: 1,
|
||||
teamDesc: 1,
|
||||
teamShortName: 1,
|
||||
teamWebsite: 1,
|
||||
teams: 1,
|
||||
createdAt: 1,
|
||||
loginDisabled: 1,
|
||||
teamIsActive: 1,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue