mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-05-07 14:07:00 +02:00
feat(about): show client black list item
This commit is contained in:
@@ -5,11 +5,12 @@
|
||||
.module('about')
|
||||
.controller('AboutController', AboutController);
|
||||
|
||||
AboutController.$inject = ['$scope', '$translate', 'getStorageLangService'];
|
||||
AboutController.$inject = ['$scope', 'MeanTorrentConfig'];
|
||||
|
||||
function AboutController($scope, $translate, getStorageLangService) {
|
||||
function AboutController($scope, MeanTorrentConfig) {
|
||||
var vm = this;
|
||||
vm.lang = getStorageLangService.getLang();
|
||||
vm.blackListConfig = MeanTorrentConfig.meanTorrentConfig.clientBlackList;
|
||||
vm.announce = MeanTorrentConfig.meanTorrentConfig.announce;
|
||||
|
||||
vm.init = function () {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user