forgot the AdminBackupsLogsRoute
This commit is contained in:
parent
b89d328de2
commit
41d16a3657
|
@ -0,0 +1,21 @@
|
|||
Discourse.AdminBackupsLogsRoute = Discourse.Route.extend({
|
||||
|
||||
// since the logs are pushed via the message bus
|
||||
// we only want to preload them (hence the beforeModel hook)
|
||||
beforeModel: function() {
|
||||
var logsController = this.controllerFor("adminBackupsLogs");
|
||||
// preload the logs if any
|
||||
PreloadStore.getAndRemove("logs").then(function (preloadedLogs) {
|
||||
if (preloadedLogs && preloadedLogs.length) {
|
||||
// we need to filter out message like: "[SUCCESS]"
|
||||
// and convert POJOs to Ember Objects
|
||||
var logs = _.chain(preloadedLogs)
|
||||
.reject(function (log) { return log.message.length === 0 || log.message[0] === "["; })
|
||||
.map(function (log) { return Em.Object.create(log); })
|
||||
.value();
|
||||
logsController.pushObjects(logs);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
});
|
Loading…
Reference in New Issue