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