Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit c3e845b

Browse files
fixed presentation function for screenshots
1 parent cd6ec6a commit c3e845b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

server/services/comments/comments.hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const userSchema = {
2424
childField: '_id',
2525
query: {
2626
$limit: 1,
27-
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'thumbnails']
27+
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'termsAndConditionsAccepted', 'thumbnails']
2828
}
2929
}
3030
};

server/services/contributions/contributions.hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const userSchema = {
3131
childField: '_id',
3232
query: {
3333
$limit: 1,
34-
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'thumbnails']
34+
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'termsAndConditionsAccepted', 'thumbnails']
3535
}
3636
}
3737
};

server/services/notifications/notifications.hooks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const commentSchema = {
2323
childField: '_id',
2424
query: {
2525
$limit: 1,
26-
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'thumbnails']
26+
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'termsAndConditionsAccepted', 'thumbnails']
2727
}
2828
}
2929
}
@@ -49,7 +49,7 @@ const userSchema = {
4949
childField: '_id',
5050
query: {
5151
$limit: 1,
52-
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'thumbnails']
52+
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'termsAndConditionsAccepted', 'thumbnails']
5353
}
5454
}
5555
};

server/services/organizations/organizations.hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const reviewerSchema = {
3737
childField: '_id',
3838
query: {
3939
$limit: 1,
40-
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'thumbnails']
40+
$select: ['_id', 'name', 'slug', 'avatar', 'lastActiveAt', 'termsAndConditionsAccepted', 'thumbnails']
4141
}
4242
}
4343
};

0 commit comments

Comments
 (0)