Intial
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
window.app.controller('EditProfileController', EditProfileController);
|
||||
|
||||
EditProfileController.$inject = ['$http', 'editProfileConfig', 'model'];
|
||||
function EditProfileController($http, editProfileConfig, model) {
|
||||
var vm = this;
|
||||
|
||||
vm.profile = model;
|
||||
vm.save = save;
|
||||
|
||||
function save() {
|
||||
vm.saving = true;
|
||||
vm.errorMessage = null;
|
||||
vm.success = false;
|
||||
|
||||
$http.post(editProfileConfig.saveUrl, vm.profile)
|
||||
.success(function() {
|
||||
vm.success = true;
|
||||
})
|
||||
.error(function(msg) {
|
||||
vm.errorMessage = msg;
|
||||
})
|
||||
.finally(function() {
|
||||
vm.saving = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user