client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
15 lines (11 loc) • 375 B
JavaScript
(function () {
'use strict';
angular.module('clientApp').controller('loanApprovedController', loanApprovedController);
loanApprovedController.$inject = ['loan', 'currentLoan'];
function loanApprovedController(loanService, currentLoan) {
var self = this;
self.init = function () {
self.loan = currentLoan;
};
}
}());