mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
14 lines
294 B
JavaScript
14 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
|
|||
|
}
|
|||
|
});
|
|||
|
});
|