mirror of
https://github.com/Readarr/Readarr
synced 2025-12-23 00:36:08 +01:00
14 lines
409 B
JavaScript
14 lines
409 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Commands/CommandCollection',
|
|
'Commands/CommandMessengerItemView'
|
|
], function (Marionette, commandCollection, CommandMessengerItemView) {
|
|
|
|
var CollectionView = Marionette.CollectionView.extend({
|
|
itemView: CommandMessengerItemView
|
|
});
|
|
|
|
return new CollectionView({collection: commandCollection});
|
|
});
|