This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/controllers/account-created-edit-email.js.es6
2019-11-07 15:38:28 -06:00

31 lines
819 B
JavaScript

import discourseComputed from "discourse-common/utils/decorators";
import Controller from "@ember/controller";
import { changeEmail } from "discourse/lib/user-activation";
import { popupAjaxError } from "discourse/lib/ajax-error";
export default Controller.extend({
accountCreated: null,
newEmail: null,
@discourseComputed("newEmail", "accountCreated.email")
submitDisabled(newEmail, currentEmail) {
return newEmail === currentEmail;
},
actions: {
changeEmail() {
const email = this.newEmail;
changeEmail({ email })
.then(() => {
this.set("accountCreated.email", email);
this.transitionToRoute("account-created.resent");
})
.catch(popupAjaxError);
},
cancel() {
this.transitionToRoute("account-created.index");
}
}
});