mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
![]() |
Releases = new Meteor.Collection('releases');
|
||
|
|
||
|
heroModules.push({
|
||
|
template: 'currentRelease'
|
||
|
});
|
||
|
|
||
|
Telescope.config.preloadSubscriptions.push('currentRelease');
|
||
|
|
||
|
Meteor.startup(function () {
|
||
|
Releases.allow({
|
||
|
insert: Users.isAdminById,
|
||
|
update: Users.isAdminById,
|
||
|
remove: Users.isAdminById
|
||
|
});
|
||
|
});
|