1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/UI/Logs/Files/Collection.js

14 lines
294 B
JavaScript
Raw Normal View History

2013-07-29 01:13:14 +02:00
'use strict';
define(['Logs/Files/Model' ],
function (LogFileModel) {
return Backbone.Collection.extend({
url : window.ApiRoot + '/log/files',
model: LogFileModel,
state: {
sortKey : 'lastWriteTime',
order : 1
}
});
});