mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 06:53:40 +08:00
dc2a0854b0
When admin has unseen new feature, gift emoji is added to a link. In addition, `/new-features` path was changed to `/whats-new`
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
const GENERAL_ATTRIBUTES = [
|
|
"updated_at",
|
|
"discourse_updated_at",
|
|
"release_notes_link",
|
|
];
|
|
|
|
export default class AdminDashboard extends EmberObject {
|
|
static fetch() {
|
|
return ajax("/admin/dashboard.json").then((json) => {
|
|
const model = AdminDashboard.create();
|
|
model.setProperties({
|
|
version_check: json.version_check,
|
|
hasUnseenFeatures: json.has_unseen_features,
|
|
});
|
|
|
|
return model;
|
|
});
|
|
}
|
|
|
|
static fetchGeneral() {
|
|
return ajax("/admin/dashboard/general.json").then((json) => {
|
|
const model = AdminDashboard.create();
|
|
|
|
const attributes = {};
|
|
GENERAL_ATTRIBUTES.forEach((a) => (attributes[a] = json[a]));
|
|
|
|
model.setProperties({
|
|
reports: json.reports,
|
|
attributes,
|
|
loaded: true,
|
|
});
|
|
|
|
return model;
|
|
});
|
|
}
|
|
|
|
static fetchProblems() {
|
|
return ajax("/admin/dashboard/problems.json").then((json) => {
|
|
const model = AdminDashboard.create(json);
|
|
model.set("loaded", true);
|
|
return model;
|
|
});
|
|
}
|
|
}
|