mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 11:13:42 +08:00
32665cf9dd
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
37 lines
992 B
JavaScript
37 lines
992 B
JavaScript
import { tracked } from "@glimmer/tracking";
|
|
import Controller, { inject as controller } from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
import { service } from "@ember/service";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class AdminWebHooksShowController extends Controller {
|
|
@service dialog;
|
|
@service router;
|
|
@controller adminWebHooks;
|
|
@tracked status;
|
|
|
|
queryParams = ["status"];
|
|
|
|
@action
|
|
edit() {
|
|
return this.router.transitionTo("adminWebHooks.edit", this.model);
|
|
}
|
|
|
|
@action
|
|
destroyWebhook() {
|
|
return this.dialog.deleteConfirm({
|
|
message: i18n("admin.web_hooks.delete_confirm"),
|
|
didConfirm: async () => {
|
|
try {
|
|
await this.model.destroyRecord();
|
|
this.adminWebHooks.model.removeObject(this.model);
|
|
this.router.transitionTo("adminWebHooks");
|
|
} catch (e) {
|
|
popupAjaxError(e);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
}
|