aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/users/list-view.js
blob: 24878864d309901cfd4c6b951fa0ab09114d12d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
define([
  './list-item-view',
  './templates'
], function (ListItemView) {

  return Marionette.CollectionView.extend({
    tagName: 'ul',
    childView: ListItemView
  });

});