1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/models/custom-wizard-logs.js.es6

18 Zeilen
393 B
Text

2021-02-24 08:43:35 +01:00
import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";
2020-04-15 04:10:39 +02:00
import EmberObject from "@ember/object";
const CustomWizardLogs = EmberObject.extend();
CustomWizardLogs.reopenClass({
list(page = 0) {
2021-02-24 08:43:35 +01:00
return ajax("/admin/wizards/logs", {
2020-04-15 04:10:39 +02:00
data: {
2021-02-24 08:43:35 +01:00
page,
},
2020-04-15 04:10:39 +02:00
}).catch(popupAjaxError);
2021-02-24 08:43:35 +01:00
},
2020-04-15 04:10:39 +02:00
});
2021-02-24 08:43:35 +01:00
export default CustomWizardLogs;