(function () {
    webApplication.controller("views.layout.defaultLayout.index", [
        "$scope", "$compile", "$uibModal", "$state", "$stateParams",
        function ($scope, $compile, $uibModal, $state, $stateParams) {
            let vm = this;
            $scope.reload = function () {
                window.location.href = `${applicationContextPath}/home`
            }
        },
    ]);
})();


