This commit is contained in:
John Supplee 2021-07-20 19:24:40 -04:00
commit 0ce2f9ea43
204 changed files with 13619 additions and 2379 deletions

View file

@ -34,6 +34,8 @@ Meteor.publish('boards', function() {
description: 1,
color: 1,
members: 1,
orgs: 1,
teams: 1,
permission: 1,
type: 1,
sort: 1,

View file

@ -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,
},
});
}

View file

@ -21,6 +21,8 @@ Meteor.publish('people', function(query, limit) {
loginDisabled: 1,
authenticationMethod: 1,
importUsernames: 1,
orgs: 1,
teams: 1,
},
});
}

View file

@ -23,6 +23,7 @@ Meteor.publish('setting', () => {
customHTMLbeforeBodyEnd: 1,
displayAuthenticationMethod: 1,
defaultAuthenticationMethod: 1,
spinnerName: 1,
},
},
);

View file

@ -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,
},
});
}