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

Commit 121453f

Browse files
do not set termsAndConditionAccepted flag by default.
1 parent 99e6d4c commit 121453f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/models/users.model.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = function (app) {
4545
wasSeeded: { type: Boolean },
4646
wasInvited: { type: Boolean },
4747
language: { type: String, default: 'en' },
48-
termsAndConditionsAccepted: { type: Date, default: Date.now }, // we display the terms and conditions on registration
48+
termsAndConditionsAccepted: { type: Date }, // we display the terms and conditions on registration
4949
systemNotificationsSeen: { type: Array, default: [] }
5050
});
5151

0 commit comments

Comments
 (0)