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