mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
19 lines
No EOL
473 B
JavaScript
19 lines
No EOL
473 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'];
|
|
|
|
// array containing post list view parameters
|
|
viewParameters = [] |