mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 19:32:19 +01:00
18 lines
292 B
JavaScript
18 lines
292 B
JavaScript
|
|
(function () {
|
||
|
|
'use strict';
|
||
|
|
|
||
|
|
angular
|
||
|
|
.module('forums')
|
||
|
|
.controller('ForumsController', ForumsController);
|
||
|
|
|
||
|
|
ForumsController.$inject = ['$scope', '$translate'];
|
||
|
|
|
||
|
|
function ForumsController($scope, $translate) {
|
||
|
|
var vm = this;
|
||
|
|
|
||
|
|
vm.init = function () {
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}());
|