44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
actions: {
|
|
disableSecurityKey() {
|
|
this.user
|
|
.updateSecurityKey(this.model.id, this.model.name, true)
|
|
.then(response => {
|
|
if (response.error) {
|
|
return;
|
|
}
|
|
this.markDirty();
|
|
})
|
|
.catch(error => {
|
|
this.send("closeModal");
|
|
this.onError(error);
|
|
})
|
|
.finally(() => {
|
|
this.set("loading", false);
|
|
this.send("closeModal");
|
|
});
|
|
},
|
|
|
|
editSecurityKey() {
|
|
this.user
|
|
.updateSecurityKey(this.model.id, this.model.name, false)
|
|
.then(response => {
|
|
if (response.error) {
|
|
return;
|
|
}
|
|
this.markDirty();
|
|
})
|
|
.catch(error => {
|
|
this.onError(error);
|
|
})
|
|
.finally(() => {
|
|
this.set("loading", false);
|
|
this.send("closeModal");
|
|
});
|
|
}
|
|
}
|
|
});
|