Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
33 Zeilen
767 B
JavaScript
33 Zeilen
767 B
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import EmberObject from "@ember/object";
|
|
import { isEmpty } from "@ember/utils";
|
|
|
|
const CustomWizardCustomField = EmberObject.extend({
|
|
isNew: isEmpty("id"),
|
|
});
|
|
|
|
const basePath = "/admin/wizards/custom-fields";
|
|
|
|
CustomWizardCustomField.reopenClass({
|
|
listFields() {
|
|
return ajax(basePath).catch(popupAjaxError);
|
|
},
|
|
|
|
saveField(customField) {
|
|
return ajax(basePath, {
|
|
type: "PUT",
|
|
data: {
|
|
custom_field: customField,
|
|
},
|
|
}).catch(popupAjaxError);
|
|
},
|
|
|
|
destroyField(field) {
|
|
return ajax(`${basePath}/${field.name}`, {
|
|
type: "DELETE",
|
|
}).catch(popupAjaxError);
|
|
},
|
|
});
|
|
|
|
export default CustomWizardCustomField;
|