Addressed one of the bugs cited in issue #802 'bug when creating and modifying organization and team'

This commit is contained in:
Emile NDAGIJIMANA 2021-06-07 11:03:49 +02:00
parent 6e46cad56c
commit f5dbe8c6f6
6 changed files with 128 additions and 81 deletions

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