mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 18:28:19 +00:00
13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
'use strict';
|
||
define(['Logs/Files/Model' ],
|
||
function (LogFileModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.ApiRoot + '/log/files',
|
||
model: LogFileModel,
|
||
|
||
state: {
|
||
sortKey : 'lastWriteTime',
|
||
order : 1
|
||
}
|
||
});
|
||
});
|