mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
initial commit
This commit is contained in:
parent
b7c7d8b449
commit
750811a81f
52 changed files with 25204 additions and 92 deletions
34
imports/api/systemConfig.js
Normal file
34
imports/api/systemConfig.js
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
import { Meteor } from 'meteor/meteor';
|
||||
import { Mongo } from 'meteor/mongo';
|
||||
import { check } from 'meteor/check';
|
||||
|
||||
export const SysConfig = new Mongo.Collection('sysConfig');
|
||||
|
||||
SysConfig.allow({
|
||||
insert: function(userId, doc){
|
||||
// if use id exists, allow insert
|
||||
return !!userId;
|
||||
},
|
||||
});
|
||||
|
||||
Meteor.methods({
|
||||
'add.noSysAdminReg' () {
|
||||
return SysConfig.insert({
|
||||
canReg: false,
|
||||
dateAdded: new Date(),
|
||||
});
|
||||
},
|
||||
'edit.noSysAdminReg' (canReg) {
|
||||
check(canReg, Boolean);
|
||||
|
||||
if (!this.userId) {
|
||||
throw new Meteor.Error('Not able to change registration setting. Make sure you are logged in with valid system administrator credentials.');
|
||||
}
|
||||
return SysConfig.update({ _id: configId }, {
|
||||
$set: {
|
||||
canReg: canReg,
|
||||
dateUpdated: new Date(),
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue