Add user management
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
window.app.directive('inventoryAdd', inventoryAdd);
|
||||
|
||||
function inventoryAdd() {
|
||||
return {
|
||||
templateUrl: '/inventory/template/inventoryAdd.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
}
|
||||
window.app.directive('inventoryAdd',
|
||||
function() {
|
||||
return {
|
||||
templateUrl: '/inventory/template/inventoryAdd.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
});
|
||||
|
||||
controller.$inject = ['$scope', 'inventorySvc', 'inventoryTypeSvc'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user