mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-07-15 02:21:28 +02:00
add forums model view,routes,controller etc
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
angular
|
||||
.module('forums')
|
||||
.controller('ForumsController', ForumsController);
|
||||
|
||||
ForumsController.$inject = ['$scope', '$translate'];
|
||||
|
||||
function ForumsController($scope, $translate) {
|
||||
var vm = this;
|
||||
|
||||
vm.init = function () {
|
||||
|
||||
};
|
||||
}
|
||||
}());
|
||||
Reference in New Issue
Block a user