29 lines
705 B
JavaScript
29 lines
705 B
JavaScript
import { tracked } from "@glimmer/tracking";
|
|
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
import { service } from "@ember/service";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { isTesting } from "discourse-common/config/environment";
|
|
|
|
const AI_ATTRS = ["auto_image_caption"];
|
|
|
|
export default class PreferencesAiController extends Controller {
|
|
@service siteSettings;
|
|
@tracked saved = false;
|
|
|
|
@action
|
|
save() {
|
|
this.saved = false;
|
|
|
|
return this.model
|
|
.save(AI_ATTRS)
|
|
.then(() => {
|
|
this.saved = true;
|
|
if (!isTesting()) {
|
|
location.reload();
|
|
}
|
|
})
|
|
.catch(popupAjaxError);
|
|
}
|
|
}
|