add forums model view,routes,controller etc

This commit is contained in:
OldHawk
2017-05-04 17:49:33 +08:00
parent fa661dad3a
commit ab498cf1bf
5 changed files with 27 additions and 7 deletions

View File

@@ -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 () {
};
}
}());