mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
18 lines
405 B
JavaScript
18 lines
405 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backbone',
|
|
'System/Logs/Updates/LogFileModel'
|
|
], function (Backbone, LogFileModel) {
|
|
return Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/log/file/update',
|
|
model: LogFileModel,
|
|
|
|
state: {
|
|
sortKey: 'lastWriteTime',
|
|
order : 1
|
|
}
|
|
});
|
|
});
|