mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
Settings = new Meteor.Collection('settings');
|
|
|
|
Settings.allow({
|
|
insert: isAdminById
|
|
, update: isAdminById
|
|
, remove: isAdminById
|
|
});
|
|
|