mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04: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
|
|
}
|
|
});
|
|
});
|