mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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
|
||
}
|
||
});
|
||
});
|