mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 12:33:44 +08:00
32665cf9dd
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
import Setting from "admin/mixins/setting-object";
|
|
|
|
export default class SiteSetting extends EmberObject.extend(Setting) {
|
|
static findAll(params = {}) {
|
|
return ajax("/admin/site_settings", { data: params }).then(function (
|
|
settings
|
|
) {
|
|
// Group the results by category
|
|
const categories = {};
|
|
settings.site_settings.forEach(function (s) {
|
|
if (!categories[s.category]) {
|
|
categories[s.category] = [];
|
|
}
|
|
categories[s.category].pushObject(SiteSetting.create(s));
|
|
});
|
|
|
|
return Object.keys(categories).map(function (n) {
|
|
return {
|
|
nameKey: n,
|
|
name: i18n("admin.site_settings.categories." + n),
|
|
siteSettings: categories[n],
|
|
};
|
|
});
|
|
});
|
|
}
|
|
|
|
static update(key, value, opts = {}) {
|
|
const data = {};
|
|
data[key] = value;
|
|
|
|
if (opts["updateExistingUsers"] === true) {
|
|
data["update_existing_user"] = true;
|
|
}
|
|
|
|
return ajax(`/admin/site_settings/${key}`, { type: "PUT", data });
|
|
}
|
|
|
|
@discourseComputed("setting")
|
|
staffLogFilter(setting) {
|
|
if (!setting) {
|
|
return;
|
|
}
|
|
|
|
return {
|
|
subject: setting,
|
|
action_name: "change_site_setting",
|
|
};
|
|
}
|
|
}
|