mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07: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
|
||
}
|
||
});
|
||
});
|