You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/plugins/configs/ts/ConfigsHelper.ts

16 lines
501 B

/// <reference path="../../includes.ts"/>
/// <reference path="configPlugin.ts"/>
module Configs{
_module.controller('Configs.MenuItemController',['$scope', '$location', ($scope, $location) => {
$scope.menuItem=[{
icon:"glyphicon glyphicon-cloud-upload",
title:"数据管理配置",
href: UrlHelpers.join(context, "/gluster-fs/setting")
},
{
icon:"glyphicon glyphicon-th-list",
title:"服务集群配置",
href: UrlHelpers.join(context, "/kube-cluster/setting")
}]
}]);
}