do api calls on viewContentLoaded

This commit is contained in:
Kyle Spearrin 2017-03-07 00:36:27 -05:00
parent 22299c03cd
commit 3d273f041e
4 changed files with 47 additions and 40 deletions

View File

@ -6,11 +6,12 @@ angular
vm.bodyClass = '';
vm.searchVaultText = null;
vm.version = appSettings.version;
vm.userProfile = authService.getUserProfile();
$scope.currentYear = new Date().getFullYear();
$scope.$on('$viewContentLoaded', function () {
vm.userProfile = authService.getUserProfile();
if ($.AdminLTE) {
if ($.AdminLTE.layout) {
$.AdminLTE.layout.fix();

View File

@ -3,7 +3,9 @@
.controller('organizationPeopleController', function ($scope, $state, $uibModal, cryptoService, apiService, toastr) {
$scope.users = [];
$scope.$on('$viewContentLoaded', function () {
loadList();
});
$scope.confirm = function (user) {
apiService.users.getPublicKey({ id: user.userId }, function (userKey) {

View File

@ -8,6 +8,7 @@
email: null
};
$scope.$on('$viewContentLoaded', function () {
apiService.accounts.getProfile({}, function (user) {
$scope.model = {
profile: {
@ -31,6 +32,7 @@
$scope.model.organizations = orgs;
}
});
});
$scope.generalSave = function () {
$scope.generalPromise = apiService.accounts.putProfile({}, $scope.model.profile, function (profile) {

View File

@ -7,6 +7,7 @@
$scope.folders = [];
$scope.loading = true;
$scope.$on('$viewContentLoaded', function () {
apiService.ciphers.list({}, function (ciphers) {
$scope.loading = false;
@ -30,6 +31,7 @@
$scope.folders = decFolders;
$scope.logins = decLogins;
});
});
$scope.folderSort = function (item) {
if (!item.id) {