mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
32 lines
749 B
JavaScript
32 lines
749 B
JavaScript
import { action } from "@ember/object";
|
|
import Controller from "@ember/controller";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
export default class AdminEmailAdvancedTestController extends Controller {
|
|
email = null;
|
|
text = null;
|
|
elided = null;
|
|
format = null;
|
|
loading = null;
|
|
|
|
@action
|
|
run() {
|
|
this.set("loading", true);
|
|
|
|
ajax("/admin/email/advanced-test", {
|
|
type: "POST",
|
|
data: { email: this.email },
|
|
})
|
|
.then((data) => {
|
|
this.setProperties({
|
|
text: data.text,
|
|
elided: data.elided,
|
|
format: data.format,
|
|
});
|
|
})
|
|
.catch(popupAjaxError)
|
|
.finally(() => this.set("loading", false));
|
|
}
|
|
}
|