37 lines
923 B
JavaScript
37 lines
923 B
JavaScript
|
|
/// <reference path="../pb_data/types.d.ts" />
|
||
|
|
migrate((db) => {
|
||
|
|
const dao = new Dao(db)
|
||
|
|
const collection = dao.findCollectionByNameOrId("_pb_users_auth_")
|
||
|
|
|
||
|
|
collection.options = {
|
||
|
|
"allowEmailAuth": true,
|
||
|
|
"allowOAuth2Auth": true,
|
||
|
|
"allowUsernameAuth": true,
|
||
|
|
"exceptEmailDomains": null,
|
||
|
|
"manageRule": null,
|
||
|
|
"minPasswordLength": 6,
|
||
|
|
"onlyEmailDomains": null,
|
||
|
|
"onlyVerified": false,
|
||
|
|
"requireEmail": false
|
||
|
|
}
|
||
|
|
|
||
|
|
return dao.saveCollection(collection)
|
||
|
|
}, (db) => {
|
||
|
|
const dao = new Dao(db)
|
||
|
|
const collection = dao.findCollectionByNameOrId("_pb_users_auth_")
|
||
|
|
|
||
|
|
collection.options = {
|
||
|
|
"allowEmailAuth": true,
|
||
|
|
"allowOAuth2Auth": true,
|
||
|
|
"allowUsernameAuth": true,
|
||
|
|
"exceptEmailDomains": null,
|
||
|
|
"manageRule": null,
|
||
|
|
"minPasswordLength": 8,
|
||
|
|
"onlyEmailDomains": null,
|
||
|
|
"onlyVerified": false,
|
||
|
|
"requireEmail": false
|
||
|
|
}
|
||
|
|
|
||
|
|
return dao.saveCollection(collection)
|
||
|
|
})
|