mirror of
https://github.com/Radarr/Radarr
synced 2025-12-25 17:52:43 +01:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
'use strict';
|
||
|
||
define(['System/Logs/Files/LogFileModel' ],
|
||
function (LogFileModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.NzbDrone.ApiRoot + '/log/files',
|
||
model: LogFileModel,
|
||
|
||
state: {
|
||
sortKey : 'lastWriteTime',
|
||
order : 1
|
||
}
|
||
});
|
||
});
|