2022-03-09 07:55:26 -08:00
|
|
|
import { Accounts } from 'meteor/accounts-base'
|
2021-09-16 07:26:57 -07:00
|
|
|
|
2022-04-02 10:29:35 -07:00
|
|
|
if(Meteor.isCLient) {
|
|
|
|
|
Accounts.ui.config({
|
|
|
|
|
passwordSignupFields: 'USERNAME_ONLY'
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-03-09 07:55:26 -08:00
|
|
|
|
|
|
|
|
Accounts.config({
|
|
|
|
|
restrictCreationByEmailDomain: function(address) {
|
|
|
|
|
return new RegExp('.*@avpanthers.org$', 'i').test(address)
|
|
|
|
|
}
|
|
|
|
|
});
|