You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'The MongoDB driver option to specify the amount of time, in milliseconds, to wait to establish a single TCP socket connection to the server before raising an error. Specifying 0 disables the connection timeout.',
1102
1102
action: parsers.numberParser('connectTimeoutMS'),
1103
1103
},
1104
+
createIndexEmail: {
1105
+
env: 'PARSE_SERVER_DATABASE_CREATE_INDEX_EMAIL',
1106
+
help:
1107
+
'Set to `true` to automatically create indexes on the email field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>\u26A0\uFE0F The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.',
'Set to `true` to automatically create an index on the _email_verify_token field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>\u26A0\uFE0F The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.',
'Set to `true` to automatically create an index on the _perishable_token field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>\u26A0\uFE0F The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.',
'Set to `true` to automatically create indexes on the username field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>\u26A0\uFE0F The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.',
/* The MongoDB driver option to specify the amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the autoSelectFamily option. If set to a positive integer less than 10, the value 10 is used instead. */
634
634
autoSelectFamilyAttemptTimeout: ?number;
635
+
/* Set to `true` to automatically create indexes on the email field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>⚠️ The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.
636
+
:DEFAULT: true */
637
+
createIndexEmail: ?boolean;
638
+
/* Set to `true` to automatically create an index on the _email_verify_token field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>⚠️ The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.
639
+
:DEFAULT: true */
640
+
createIndexEmailVerifyToken: ?boolean;
641
+
/* Set to `true` to automatically create an index on the _perishable_token field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>⚠️ The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.
642
+
:DEFAULT: true */
643
+
createIndexPasswordResetToken: ?boolean;
644
+
/* Set to `true` to automatically create indexes on the username field of the _User collection on server start. Set to `false` to skip index creation. Default is `true`.<br><br>⚠️ The automatically created index may change in the future to be optimized for the internal usage by Parse Server. Keep this in mind when manually creating this index.
645
+
:DEFAULT: true */
646
+
createIndexUsername: ?boolean;
635
647
/* Set to `true` to disable validation of index fields. When disabled, indexes can be created even if the fields do not exist in the schema. This can be useful when creating indexes on fields that will be added later. */
0 commit comments