mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 00:23:59 -07:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
'use strict';
|
||
define(['Logs/Files/Model' ],
|
||
function (LogFileModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.NzbDrone.ApiRoot + '/log/files',
|
||
model: LogFileModel,
|
||
|
||
state: {
|
||
sortKey : 'lastWriteTime',
|
||
order : 1
|
||
}
|
||
});
|
||
});
|