summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-09-04 22:26:00 +0300
committerLauri Ojansivu <x@xet7.org>2019-09-04 22:26:00 +0300
commit4567f08a0b82e6f7bce575adf23c56b1abadbb47 (patch)
treeb3e772f5b80195aae739b36efd5cd242f9150f88 /server
parentb0281e194146d340c07b3a66760ce0d40be733ae (diff)
downloadwekan-4567f08a0b82e6f7bce575adf23c56b1abadbb47.tar.gz
wekan-4567f08a0b82e6f7bce575adf23c56b1abadbb47.tar.bz2
wekan-4567f08a0b82e6f7bce575adf23c56b1abadbb47.zip
Try to fix prettier.
Diffstat (limited to 'server')
-rw-r--r--server/publications/people.js28
1 files changed, 13 insertions, 15 deletions
diff --git a/server/publications/people.js b/server/publications/people.js
index dbde8a61..0a7ef6ee 100644
--- a/server/publications/people.js
+++ b/server/publications/people.js
@@ -8,21 +8,19 @@ Meteor.publish('people', function(query, limit) {
const user = Users.findOne(this.userId);
if (user && user.isAdmin) {
- return Users.find(
- query,
- {
- limit,
- sort: { createdAt: -1 },
- fields: {
- username: 1,
- 'profile.fullname': 1,
- isAdmin: 1,
- emails: 1,
- createdAt: 1,
- loginDisabled: 1,
- authenticationMethod: 1,
- },
- });
+ return Users.find(query, {
+ limit,
+ sort: { createdAt: -1 },
+ fields: {
+ username: 1,
+ 'profile.fullname': 1,
+ isAdmin: 1,
+ emails: 1,
+ createdAt: 1,
+ loginDisabled: 1,
+ authenticationMethod: 1,
+ },
+ });
}
return [];