mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
18 lines
396 B
JavaScript
18 lines
396 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backbone',
|
|
'System/Logs/Files/LogFileModel'
|
|
], function (Backbone, LogFileModel) {
|
|
return Backbone.Collection.extend({
|
|
url : window.NzbDrone.ApiRoot + '/log/file',
|
|
model: LogFileModel,
|
|
|
|
state: {
|
|
sortKey: 'lastWriteTime',
|
|
order : 1
|
|
}
|
|
});
|
|
});
|