mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04: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});
|
|
});
|