mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
12 lines
No EOL
316 B
JavaScript
12 lines
No EOL
316 B
JavaScript
Telescope.menuItems.add("adminMenu", {
|
|
route: 'adminFeeds',
|
|
label: 'Feeds',
|
|
description: 'import_new_posts_from_feeds'
|
|
});
|
|
|
|
Telescope.adminRoutes.route('/feeds', {
|
|
name: "adminFeeds",
|
|
action: function(params, queryParams) {
|
|
BlazeLayout.render("layout", {main: "admin_wrapper", admin: "feeds"});
|
|
}
|
|
}); |