2017-08-07 17:40:50 +09:00
|
|
|
AccountSettings = new Mongo.Collection('accountSettings');
|
|
|
|
|
2019-06-26 17:47:27 -05:00
|
|
|
AccountSettings.attachSchema(
|
|
|
|
new SimpleSchema({
|
|
|
|
_id: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
booleanValue: {
|
|
|
|
type: Boolean,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
sort: {
|
|
|
|
type: Number,
|
|
|
|
decimal: true,
|
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: Date,
|
|
|
|
optional: true,
|
|
|
|
// eslint-disable-next-line consistent-return
|
|
|
|
autoValue() {
|
|
|
|
if (this.isInsert) {
|
|
|
|
return new Date();
|
|
|
|
} else {
|
|
|
|
this.unset();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
modifiedAt: {
|
|
|
|
type: Date,
|
|
|
|
denyUpdate: false,
|
|
|
|
// eslint-disable-next-line consistent-return
|
|
|
|
autoValue() {
|
|
|
|
if (this.isInsert || this.isUpsert || this.isUpdate) {
|
|
|
|
return new Date();
|
|
|
|
} else {
|
|
|
|
this.unset();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2019-06-28 12:52:09 -05:00
|
|
|
}),
|
2019-06-26 17:47:27 -05:00
|
|
|
);
|
2017-08-07 17:40:50 +09:00
|
|
|
|
|
|
|
AccountSettings.allow({
|
|
|
|
update(userId) {
|
|
|
|
const user = Users.findOne(userId);
|
|
|
|
return user && user.isAdmin;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (Meteor.isServer) {
|
|
|
|
Meteor.startup(() => {
|
2019-06-26 17:47:27 -05:00
|
|
|
AccountSettings._collection._ensureIndex({ modifiedAt: -1 });
|
|
|
|
AccountSettings.upsert(
|
|
|
|
{ _id: 'accounts-allowEmailChange' },
|
|
|
|
{
|
|
|
|
$setOnInsert: {
|
|
|
|
booleanValue: false,
|
|
|
|
sort: 0,
|
|
|
|
},
|
2019-06-28 12:52:09 -05:00
|
|
|
},
|
2019-06-26 17:47:27 -05:00
|
|
|
);
|
|
|
|
AccountSettings.upsert(
|
|
|
|
{ _id: 'accounts-allowUserNameChange' },
|
|
|
|
{
|
|
|
|
$setOnInsert: {
|
|
|
|
booleanValue: false,
|
|
|
|
sort: 1,
|
|
|
|
},
|
2019-06-28 12:52:09 -05:00
|
|
|
},
|
2019-06-26 17:47:27 -05:00
|
|
|
);
|
2017-08-07 17:40:50 +09:00
|
|
|
});
|
|
|
|
}
|
2019-06-26 17:47:27 -05:00
|
|
|
|
|
|
|
export default AccountSettings;
|