mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 04:53:58 +08:00
6332d5040d
Also: - add pageviews - add problems and version sections
25 lines
578 B
JavaScript
25 lines
578 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
|
|
const AdminDashboard = Discourse.Model.extend({});
|
|
|
|
AdminDashboard.reopenClass({
|
|
|
|
/**
|
|
Fetch all dashboard data. This can be an expensive request when the cached data
|
|
has expired and the server must collect the data again.
|
|
|
|
@method find
|
|
@return {jqXHR} a jQuery Promise object
|
|
**/
|
|
find: function() {
|
|
return ajax("/admin/dashboard.json").then(function(json) {
|
|
var model = AdminDashboard.create(json);
|
|
model.set('loaded', true);
|
|
return model;
|
|
});
|
|
},
|
|
|
|
});
|
|
|
|
export default AdminDashboard;
|