mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 17:21:55 +00:00
13 lines
485 B
JavaScript
13 lines
485 B
JavaScript
(function (module) {
|
|
mifosX.controllers = _.extend(module, {
|
|
ViewMakerCheckerTaskController: function (scope, routeParams) {
|
|
scope.commandId = routeParams.commandId;
|
|
}
|
|
});
|
|
mifosX.ng.application.controller('ViewMakerCheckerTaskController', ['$scope', '$routeParams', mifosX.controllers.ViewMakerCheckerTaskController]).run(function ($log) {
|
|
$log.info("ViewMakerCheckerTaskController initialized");
|
|
});
|
|
}(mifosX.controllers || {}));
|
|
|
|
|