diff --git a/app/pods/protected/users/changepassword/controller.js b/app/pods/protected/users/changepassword/controller.js new file mode 100644 index 0000000..a157605 --- /dev/null +++ b/app/pods/protected/users/changepassword/controller.js @@ -0,0 +1,29 @@ +import Ember from 'ember'; +import ajaxRequest from '../../../../utils/ajax-request'; + +export default Ember.Controller.extend({ + passwordConfirm: null, + + actions: { + save: function() { + if (this.get('password') !== this.get('passwordConfirm')) { + this.get('flashMessages').clearMessages(); + this.get('flashMessages').error("Password fields don't match"); + return; + } + + let url = `${this.get('globals.apiURL')}/api/${this.get('globals.genus')}/users/password`; + let options = { + method: 'POST', + data: { + password: this.get('password'), + }, + }; + ajaxRequest(url, options); + this.transitionTo('protected.users.index'); + this.get('flashMessages').information('Your password has been changed.'); + }, + + }, + +}); diff --git a/app/pods/protected/users/changepassword/route.js b/app/pods/protected/users/changepassword/route.js new file mode 100644 index 0000000..982b827 --- /dev/null +++ b/app/pods/protected/users/changepassword/route.js @@ -0,0 +1,12 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + beforeModel: function(transition) { + this._super(transition); + + let user_id = transition.params['protected.users.changepassword'].user_id; + if (this.get('session.currentUser.id') !== user_id) { + this.transitionTo('protected.users.index'); + } + } +}); diff --git a/app/pods/protected/users/changepassword/template.hbs b/app/pods/protected/users/changepassword/template.hbs new file mode 100644 index 0000000..b22db6c --- /dev/null +++ b/app/pods/protected/users/changepassword/template.hbs @@ -0,0 +1,24 @@ +