mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
Releases = new Meteor.Collection('releases');
|
|
|
|
heroModules.push({
|
|
template: 'currentRelease'
|
|
});
|
|
|
|
preloadSubscriptions.push('currentRelease');
|
|
|
|
Meteor.startup(function () {
|
|
Releases.allow({
|
|
insert: isAdminById,
|
|
update: isAdminById,
|
|
remove: isAdminById
|
|
});
|
|
});
|