mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 21:36:38 -04:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
// Initialize common arrays
|
|
|
|
// array containing properties to be added to the post schema on startup.
|
|
addToPostSchema = [];
|
|
|
|
// array containing items in the views menu
|
|
viewNav = [];
|
|
|
|
// array containing items in the admin menu
|
|
adminNav = [];
|
|
|
|
// array containing subscriptions to be preloaded
|
|
preloadSubscriptions = [];
|
|
|
|
// array containing nav items; initialize with views menu
|
|
navItems = ['viewsMenu'];
|